-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
68 lines (68 loc) · 2.12 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
{
"name": "vue-qiankun",
"version": "1.0.0",
"description": "| 如果有问题尽量考虑使用 pnpm来安装依赖,本人已使用pnpm进行验证没问题的",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"build:main": "cd apps/main-vite-app-ts && pnpm build",
"build:child": "cd apps/webpack-app-ts && pnpm build",
"build:map": "cd apps/map-app-ts && pnpm build",
"build:all": " pnpm build:main && pnpm build:child && pnpm build:map",
"start:main": "cd apps/main-vite-app-ts && pnpm start",
"start:child": "cd apps/webpack-app-ts && pnpm start",
"start:map": "cd apps/map-app-ts && pnpm start",
"start:all": "concurrently \"pnpm start:main\" \"pnpm start:child\" \"pnpm start:map\"",
"prettier": "prettier --write .",
"eslint": "eslint --fix ./apps --ext .vue,.js,.ts",
"git": "git add . && git cz"
},
"lint-staged": {
"*.{vue,js,ts}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/aehyok/vue-qiankun.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aehyok/vue-qiankun/issues"
},
"homepage": "https://github.com/aehyok/vue-qiankun#readme",
"dependencies": {
"@aehyok/utils": "workspace:*",
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@element-plus/icons-vue": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vueuse/core": "^8.5.0",
"commitizen": "^4.2.4",
"concurrently": "^7.2.1",
"cz-customizable": "^6.3.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.9.0",
"husky": "^8.0.1",
"prettier": "^2.2.1",
"url-loader": "^4.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"devDependencies": {
"lint-staged": "^12.4.2"
}
}