-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "vue-admin-template",
"version": "4.4.0",
"description": "A vue admin template with Element UI & axios & iconfont & permission control & lint",
"author": "Pan <[email protected]>",
"scripts": {
"dev": "vue-cli-service serve",
"build:prod": "vue-cli-service build",
"build:stage": "vue-cli-service build --mode staging",
"preview": "node build/index.js --preview",
"svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
"lint:eslint": "eslint --ext .js,.vue src",
"fix:eslint": "eslint --ext .js,.vue src --fix",
"lint:stylelint": "stylelint src/**/*.{vue,scss,css,sass,less}",
"fix:stylelint": "stylelint src/**/*.{vue,scss,css,sass,less} --fix",
"test:unit": "jest --clearCache && vue-cli-service test:unit",
"test:ci": "npm run lint && npm run test:unit"
},
"dependencies": {
"@enraged-dun-cookie-development-team/cookie-fetcher": "^0.0.1-alpha.89",
"@wangeditor/editor": "^5.1.18",
"@wangeditor/editor-for-vue": "^1.0.2",
"animate.css": "^4.1.1",
"axios": "0.27.2",
"core-js": "3.25.0",
"element-ui": "2.15.9",
"js-cookie": "3.0.1",
"js-md5": "^0.7.3",
"normalize.css": "8.0.1",
"nprogress": "0.2.0",
"path-to-regexp": "6.2.1",
"snabbdom": "^3.5.1",
"vue": "2.7.8",
"vue-clipboard2": "^0.3.3",
"vue-json-viewer": "^2.2.22",
"vue-router": "3.5.4",
"vuedraggable": "^2.24.3",
"vuex": "3.6.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@vue/cli-plugin-babel": "5.0.8",
"@vue/cli-plugin-eslint": "5.0.8",
"@vue/cli-plugin-unit-jest": "5.0.8",
"@vue/cli-service": "5.0.8",
"@vue/test-utils": "1.3.0",
"autoprefixer": "10.4.8",
"babel-jest": "29.0.1",
"babel-plugin-dynamic-import-node": "2.3.3",
"chalk": "4.1.2",
"connect": "3.7.0",
"eslint": "8.23.0",
"eslint-plugin-vue": "9.4.0",
"html-webpack-plugin": "5.5.0",
"lint-staged": "^13.0.3",
"mockjs": "1.1.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"npm-check-updates": "^16.0.6",
"postcss": "^8.4.12",
"postcss-html": "^1.3.0",
"runjs": "4.4.1",
"sass": "1.54.5",
"sass-loader": "11.1.1",
"serve-static": "1.15.0",
"stylelint": "^14.6.0",
"stylelint-config-standard-scss": "^4.0.0",
"stylelint-less": "^1.0.5",
"stylelint-order": "^5.0.0",
"svg-sprite-loader": "6.0.11",
"svgo": "2.8.0",
"vue-template-compiler": "2.7.10"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"engines": {
"node": ">=8.9",
"npm": ">= 3.0.0"
},
"license": "MIT",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"**/src/**/*.{js,vue}": [
"vue-cli-service lint"
],
"**/src/**/*.{vue,css,sass,scss}": [
"stylelint --fix --allow-empty-input"
]
}
}