forked from ecomfe/react-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"private": true,
"name": "@huse/core",
"version": "0.8.0",
"main": "index.js",
"repository": "[email protected]:ecomfe/react-hooks.git",
"author": "otakustay <[email protected]>",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"generate": "node scripts/generate",
"lint": "lerna run lint --concurrency 3 && skr lint scripts",
"test": "lerna run test --concurrency 1 --ignore @huse/web-socket",
"build": "lerna run build",
"build-check": "lerna run build-check",
"release": "lerna version --conventional-commits --no-push",
"ci": "yarn && yarn lint && yarn build && yarn test",
"preversion": "yarn ci",
"prepack": "yarn && yarn build",
"doc:dev": "dumi dev",
"doc:build": "dumi build"
},
"devDependencies": {
"dumi": "^1.0.35",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"immer": "^8.0.0",
"inquirer": "^7.0.6",
"lerna": "^3.20.2",
"lodash": "^4.17.20",
"sort-package-json": "^1.48.0"
},
"resolutions": {
"react": "^17.0.0"
}
}