-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
128 lines (128 loc) · 3.04 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@roothub/roothub",
"version": "1.0.1",
"keywords": [
"GUI",
"前端研发工作台",
"前端"
],
"scripts": {
"start": "cross-env NODE_ENV=production npm run ui & cross-env NODE_ENV=production npm run server",
"dev": "cross-env NODE_ENV=development concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"prod:frontend": "cross-env NODE_ENV=production npm run ui",
"dev:frontend": "npm run ui",
"dev:backend": "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",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,vue}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"bin": {
"roothub": "./bin/index.js"
},
"files": [
"bin",
"server",
"dist",
"material-tpl",
"project.config.json",
"recommendMaterials.json"
],
"dependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"chalk": "^3.0.0",
"cheerio": "^1.0.0-rc.10",
"commander": "^4.0.1",
"core-js": "^3.3.2",
"cron": "^1.8.2",
"cross-spawn": "^7.0.1",
"dayjs": "^1.10.6",
"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",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"qiankun": "^2.6.0",
"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",
"concurrently": "^6.2.0",
"cross-env": "^7.0.2",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"frontmatter-markdown-loader": "^3.1.0",
"husky": "^7.0.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"lint-staged": "^11.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"
}
}