-
Notifications
You must be signed in to change notification settings - Fork 131
/
package.json
59 lines (59 loc) · 2.37 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
{
"name": "root",
"scripts": {
"doc": "gitbook build ./docs ../docsTmp && git checkout gh-pages && cp -r ../docsTmp/* ./ && rm -fr ../docsTmp",
"doc:serve": "gitbook serve ./docs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"pub": "npm run build && lerna publish --exact --force-publish",
"pub-alpha": "npm run build && lerna publish --exact --pre-dist-tag alpha --force-publish",
"build": "lerna run build",
"bc": "lerna run build --scope @areslabs/alita-core --scope @areslabs/wx-react --scope @areslabs/wx-react-native"
},
"authors": [
"yankang (https://github.com/ykforerlang)",
"liuyan (https://github.com/YvetteLau)"
],
"license": "MIT",
"dependencies": {
"@areslabs/alita": "file:packages/alita-cli",
"@areslabs/alita-core": "file:packages/alita-core",
"@areslabs/alita-weixin-runtime": "file:packages/alita-weixin-runtime",
"@areslabs/babel-plugin-alitamisc": "file:packages/babel-plugin-alitamisc",
"@areslabs/eslint-plugin-alita": "file:packages/eslint-plugin-alita",
"@areslabs/regenerator-runtime": "file:packages/regenerator-runtime",
"@areslabs/router": "file:packages/router",
"@areslabs/wx-animated": "file:packages/wx-animated",
"@areslabs/wx-eventemitter": "file:packages/wx-eventemitter",
"@areslabs/wx-mobx-react": "file:packages/wx-mobx-react",
"@areslabs/wx-prop-types": "file:packages/wx-prop-types",
"@areslabs/wx-react": "file:packages/wx-react",
"@areslabs/wx-react-native": "file:packages/wx-react-native",
"@areslabs/wx-react-redux": "file:packages/wx-react-redux",
"@areslabs/wx-redux-promise": "file:packages/wx-redux-promise"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.4",
"@types/fs-extra": "^8.0.1",
"@types/node": "^12.12.11",
"@types/webpack": "^4.41.0",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^4.0.0",
"cz-lerna-changelog": "^2.0.2",
"eslint": "^5.14.1",
"husky": "^4.2.3",
"jest": "^24.8.0",
"lerna": "^3.20.2",
"mocha": "^3.1.2",
"rollup-plugin-babel": "^4.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}