-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.19 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.19 KB
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
{
"name": "factory",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "concurrently \"npm run serve:editor\" \"npm run serve:site\"",
"serve:editor": "vue-cli-service serve --port 7001",
"serve:site": "vue-cli-service serve src/site/main.js --port 7002",
"build": "concurrently \"npm run build:editor\" \"npm run build:site\"",
"build:editor": "vue-cli-service build",
"build:site": "vue-cli-service build src/site/main.js",
"lint": "vue-cli-service lint"
},
"dependencies": {
"axios": "^0.21.0",
"concurrently": "^5.3.0",
"core-js": "^3.6.5",
"element-ui": "^2.13.2",
"qs": "^6.9.4",
"vue": "^2.6.11",
"vue-progressbar": "^0.7.5",
"vue-slicksort": "^1.1.3",
"vuex": "^3.4.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"babel-eslint": "^10.1.0",
"babel-plugin-component": "^1.1.1",
"compression-webpack-plugin": "^6.1.1",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"vue-template-compiler": "^2.6.11"
}
}