-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 3.8 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
{
"version": "0.1.0",
"license": "Apache",
"scripts": {
"cz": "npx git-cz",
"prebootstrap": "lerna clean",
"bootstrap": "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn && lerna exec --no-bail PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn install -- --ignore-scripts && npm run build",
"serve-all": "cd packages/examples && npm run serve --",
"serve-single": "cd packages/examples && npm run serve-single --",
"serve-single:web": "cd packages/examples && npm run serve-single:web --",
"serve-single:uni": "cd packages/examples && npm run serve-single:uni --",
"serve:web": "cd packages/examples && npm run serve:web --",
"serve:uni": "cd packages/examples && npm run serve:uni --",
"build": "lerna link && lerna exec --bail=false npm run build --scope '{@mand-mobile/platform-builder,@mand-mobile/platform-runtime,@mand-mobile/scroller,@mand-mobile/shared,@mand-mobile/vue-cli-plugin-builder}'",
"build:web-src": "cd packages/mand-mobile && npm run build:web-src",
"build:web-lib": "cd packages/mand-mobile && npm run build:web-lib",
"build:web-lib-vw": "cd packages/mand-mobile && npm run build:web-lib-vw",
"build:web-bundle": "cd packages/mand-mobile && npm run build:web-bundle",
"build:uni-src": "cd packages/mand-mobile && npm run build:uni-src",
"build:uni-lib": "cd packages/mand-mobile && npm run build:uni-lib",
"test:components": "cd packages/components && npm run test",
"pub": "npm run bootstrap && lerna publish --conventional-commits",
"pub:prerelease": "npm run bootstrap && lerna publish --conventional-commits --cd-version=prerelease --preid=alpha --npm-tag=alpha",
"docs:dev": "vuepress dev",
"docs:build": "vuepress build"
},
"dependencies": {
"core-js": "^2.6.5",
"flyio": "^0.6.2",
"postcss-url": "^8.0.0",
"regenerator-runtime": "^0.12.1",
"rxjs-compat": "^6.6.0",
"vue": "v2.6.12",
"vuex": "^3.0.1"
},
"husky": {
"hooks-todo-open": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
},
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/!(template)/*.{vue,js,json,ts}": [
"aesir lint -s",
"aesir format -S",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/config-lerna-scopes": "^8.1.0",
"@types/html5plus": "*",
"@types/uni-app": "*",
"@vue/cli-plugin-babel": "^3.0.3",
"@vue/cli-plugin-typescript": "^4.4.4",
"@vue/cli-service": "^3.0.3",
"aesir-cli": "^0.0.10",
"ant-design-vue": "^1.6.5",
"commitizen": "^4.1.2",
"cross-env": "^7.0.2",
"cz-mand-mobile-changelog": "2.0.2",
"eslint": "^4.4.1",
"eslint-config-aesir-mandatory": "^0.0.10",
"eslint-config-aesir-recommand": "^0.0.10",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^3.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^1.1.2",
"lerna": "^3.22.1",
"lint-staged": "^5.0.0",
"markdown-it-task-lists": "^2.1.1",
"mini-types": "*",
"miniprogram-api-typings": "^2.8.0-2",
"postcss-load-config": "^2.1.0",
"postcss-pxtorem": "^5.1.1",
"three": "^0.131.3",
"typescript": "^3.9.7",
"vue-clipboard2": "^0.3.1",
"vue-qriously": "^1.1.1",
"vue-template-compiler": "v2.6.12",
"vuepress": "^1.8.0"
},
"browserslist": [
"Android >= 4",
"ios >= 8"
],
"uni-app": {
"scripts": {}
},
"config": {
"commitizen": {
"path": "cz-mand-mobile-changelog"
}
},
"engines": {
"node": ">=15"
}
}