-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
executable file
·69 lines (69 loc) · 1.89 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
{
"name": "v3-admin",
"version": "3.1.3",
"homepage": "https://github.com/un-pany/v3-admin",
"scripts": {
"dev": "vue-cli-service serve",
"build:test": "vue-cli-service build --mode test",
"build:prod": "vue-cli-service build",
"lint": "vue-cli-service lint",
"deploy": "node ./deploy"
},
"dependencies": {
"@element-plus/icons-vue": "1.1.4",
"@mitojs/browser": "3.0.1",
"@mitojs/vue": "3.0.1",
"axios": "0.26.1",
"dayjs": "1.11.1",
"element-plus": "2.1.10",
"js-cookie": "3.0.1",
"lodash-es": "4.17.21",
"normalize.css": "8.0.1",
"nprogress": "0.2.0",
"path-to-regexp": "6.2.0",
"pinia": "2.0.13",
"screenfull": "6.0.1",
"vue": "3.2.33",
"vue-router": "4.0.14"
},
"devDependencies": {
"@types/js-cookie": "3.0.1",
"@types/lodash-es": "4.17.6",
"@types/nprogress": "0.2.0",
"@typescript-eslint/eslint-plugin": "5.20.0",
"@typescript-eslint/parser": "5.20.0",
"@vue/cli-plugin-babel": "5.0.4",
"@vue/cli-plugin-eslint": "5.0.4",
"@vue/cli-plugin-router": "5.0.4",
"@vue/cli-plugin-typescript": "5.0.4",
"@vue/cli-plugin-vuex": "5.0.4",
"@vue/cli-service": "5.0.4",
"@vue/eslint-config-standard": "6.1.0",
"@vue/eslint-config-typescript": "10.0.0",
"core-js": "3.22.0",
"eslint": "8.13.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-vue": "8.6.0",
"lint-staged": "12.3.8",
"path-browserify": "1.0.1",
"sass": "1.50.1",
"sass-loader": "12.6.0",
"scp2": "0.5.0",
"svg-sprite-loader": "6.0.11",
"terser-webpack-plugin": "5.3.1",
"typescript": "4.6.3",
"webpackbar": "5.0.2",
"yorkie": "2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}