-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
103 lines (103 loc) · 2.35 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
94
95
96
97
98
99
100
101
102
103
{
"name": "@ideagays/pandora",
"version": "1.0.1",
"keywords": ["GUI", "前端研发工作台", "前端"],
"scripts": {
"dev": "npm run ui & cross-env NODE_ENV=development npm run server",
"ui": "vue-cli-service serve --port=8181 --open",
"server": "supervisor -w server -e 'node,js' ./server/app.js",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"bin": {
"pandora": "./bin/index.js"
},
"files": [
"bin",
"server",
"dist",
"material-tpl",
"project.config.json",
"recommendMaterials.json"
],
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"core-js": "^3.3.2",
"cross-spawn": "^7.0.1",
"express": "^4.17.1",
"form-data": "^3.0.0",
"fs-extra": "^8.1.0",
"inquirer": "^7.0.1",
"launch-editor": "^2.2.1",
"listr": "^0.14.3",
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"node-server-screenshot": "^0.2.4",
"nodegit": "^0.26.5",
"normalize.css": "^8.0.1",
"qs": "^6.9.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"supervisor": "^0.12.0",
"tinytime": "^0.2.6",
"uuid": "^3.3.3",
"view-design": "^4.1.3",
"vue": "^2.6.10",
"vue-lazyload": "^1.3.3",
"vue-router": "^3.1.3",
"vuex": "^3.1.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-eslint": "^4.0.0",
"@vue/cli-service": "^4.0.0",
"babel-eslint": "^10.0.3",
"babel-node": "^0.0.1-security",
"cross-env": "^7.0.2",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"frontmatter-markdown-loader": "^3.1.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"style-resources-loader": "^1.3.2",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off",
"no-unused-vars": "off",
"vue/no-parsing-error": [
2,
{
"x-invalid-end-tag": false
}
]
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"showbox": {
"type": "vue"
}
}