-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "vue-micro-main-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:main\" \"npm run dev:app1\" \"npm run dev:app2\"",
"dev:main": "vue-cli-service serve",
"dev:app1": "cd app1 && yarn dev",
"dev:app2": "cd app2 && yarn dev",
"install:all": "npm run install:main && npm run install:app1 && npm run install:app2",
"install:main": "yarn",
"install:app1": "cd app1 && yarn",
"install:app2": "cd app2 && yarn",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"postinstall": "node postinstall.js"
},
"dependencies": {
"concurrently": "^5.0.0",
"core-js": "^2.6.5",
"qiankun": "^1.2.0",
"vue": "^2.6.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.0",
"@vue/cli-plugin-eslint": "^3.12.0",
"@vue/cli-service": "^3.12.0",
"@vue/eslint-config-prettier": "^5.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.0.0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lint-staged": "^8.1.5",
"prettier": "^1.18.2",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}