-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
42 lines (42 loc) · 1.26 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
{
"private": true,
"name": "@huse/core",
"version": "0.8.0",
"main": "index.js",
"repository": "git@github.com:ecomfe/react-hooks.git",
"author": "otakustay <otakustay@gmail.com>",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"generate": "node scripts/generate",
"lint": "lerna run lint --concurrency 3 && skr lint scripts && 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",
"deploy": "lerna publish from-package",
"ci": "pnpm install && npm run lint && npm run build && npm run test",
"preversion": "npm run ci",
"version": "pnpm install && git add pnpm-lock.yaml",
"prepack": "pnpm install && npm run build",
"doc:dev": "dumi dev",
"doc:build": "dumi build"
},
"devDependencies": {
"@reskript/cli": "^1.10.1",
"@reskript/cli-lint": "^1.10.1",
"dumi": "^1.0.35",
"dumi-theme-default": "^1.1.6",
"fs-extra": "^10.0.0",
"glob": "^7.1.6",
"immer": "^9.0.5",
"inquirer": "^8.1.2",
"lerna": "^4.0.0",
"lodash": "^4.17.20",
"sort-package-json": "^1.48.0"
}
}