forked from alibaba/formily
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.75 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
{
"name": "root",
"private": true,
"devEngines": {
"node": "8.x || 9.x || 10.x || 11.x",
"npm": "6.x"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"build": "node ./scripts/build.js",
"build:docs": "node ./scripts/docs.js build -i docs -o docs",
"build:watch": "node ./scripts/build.js --watch",
"start": "node ./scripts/docs.js start -i docs",
"sort-api": "node ./scripts/sort-api-table.js",
"test": "npm run build && jest",
"test:watch": "concurrently \"npm run build:watch\" \"jest --watch\"",
"coverage": "npm run test -- --coverage",
"coverage:upload": "rm -rf ./coverage && npm run coverage && node ./scripts/mapCoverage.js && codecov",
"prevesion": "npm run build && npm run lint && npm run test",
"version:alpha": "npm run prevesion && lerna version prerelease --preid alpha --exact --no-git-tag-version",
"version:beta": "npm run prevesion && lerna version prerelease --preid beta --exact --no-git-tag-version",
"version:rc": "npm run prevesion && lerna version prerelease --preid rc --exact --no-git-tag-version",
"version:patch": "npm run prevesion && lerna version patch --exact",
"version:minor": "npm run prevesion && lerna version minor --exact",
"version:major": "npm run prevesion && lerna version major --exact",
"release:force": "lerna publish from-package --yes",
"release": "lerna publish",
"lint": "eslint \"packages/!(docs)/**/*.js\" \"scripts/**/*.js\""
},
"devDependencies": {
"@alifd/next": "^1.14.2",
"@babel/cli": "^7.2.0",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime-corejs3": "^7.2.0",
"all-contributors-cli": "^6.1.2",
"antd": "^3.17.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.4",
"babel-plugin-dynamic-import-node": "^2.2.0",
"chalk": "^2.4.2",
"chokidar": "^2.1.2",
"concurrently": "^4.1.0",
"conventional-commit-types": "^2.2.0",
"cz-conventional-changelog": "^2.1.0",
"doc-scripts": "^1.7.24",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.0.2",
"eslint-plugin-standard": "^4.0.0",
"execa": "^1.0.0",
"findup": "^0.1.5",
"fs-extra": "^7.0.1",
"ghooks": "^2.0.4",
"glob": "^7.1.3",
"istanbul-api": "^2.1.1",
"istanbul-lib-coverage": "^2.0.3",
"jest": "^24.1.0",
"jest-codemods": "^0.19.1",
"jest-dom": "^3.1.2",
"jest-localstorage-mock": "^2.3.0",
"json5": "^2.1.0",
"lerna": "^3.10.1",
"majo": "^0.7.1",
"prettier-eslint-cli": "^4.7.1",
"pretty-format": "^24.0.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-testing-library": "^6.0.0",
"remark-parse": "^6.0.3",
"remark-stringify": "^6.0.4",
"semver-regex": "^2.0.0",
"staged-git-files": "^1.1.2",
"unified": "^7.1.0",
"user-event": "^1.4.4",
"webpack": "^4.27.1"
},
"config": {
"ghooks": {
"pre-commit": "prettier-eslint \"./(packages|scripts)/**.js\" --write && npm run lint",
"commit-msg": "node ./scripts/validate-commit-msg.js"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}