-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
87 lines (87 loc) · 2.49 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
{
"name": "vue-base-template",
"version": "3.0.0",
"private": true,
"scripts": {
"dev": "npm run serve",
"serve": "vue-cli-service serve",
"serve:stage": "vue-cli-service serve --mode staging",
"build": "node scripts/build.js --mode production",
"build:prod": "vue-cli-service build --mode production",
"build:stage": "vue-cli-service build --mode staging",
"build:dll": "webpack -p --progress --config config/dll.config.js",
"analyze": "webpack -p --progress --config config/dll.config.js",
"deploy": "node scripts/deploy.js",
"dist:zip": "node scripts/zip.js",
"create": "node scripts/buildModule.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "vue-cli-service lint",
"test:unit": "jest"
},
"dependencies": {
"animate.css": "^3.7.0",
"axios": "^0.21.1",
"element-ui": "^2.8.2",
"gantt-elastic": "^1.0.11",
"js-cookie": "^2.2.0",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"tinymce": "^5.10.0",
"vue": "^2.6.11",
"vue-router": "^3.1.3",
"vuex": "^3.1.2"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.30",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-polyfill": "^6.26.0",
"chalk": "^2.4.2",
"commander": "^2.20.3",
"compression-webpack-plugin": "^3.0.1",
"connect": "^3.7.0",
"dotenv": "^8.2.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"happypack": "^5.0.1",
"inquirer": "^6.5.2",
"is-online": "^8.2.1",
"jest": "^24.9.0",
"less": "^3.10.3",
"less-loader": "^4.1.0",
"node-notifier": "^8.0.1",
"node-sass": "^4.13.0",
"node-ssh": "^6.0.0",
"open": "^6.4.0",
"ora": "^3.4.0",
"sass-loader": "^7.3.1",
"shelljs": "^0.8.5",
"style-resources-loader": "^1.3.3",
"tasksfile": "^5.1.0",
"terser-webpack-plugin": "^1.4.3",
"thread-loader": "^2.1.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"zip-local": "^0.3.4"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}