generated from alitajs/umi4-playground
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
72 lines (72 loc) · 2.11 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
{
"private": true,
"scripts": {
"bootstrap": "esno scripts/bootstrap.ts",
"build": "esno scripts/turbo.ts --cmd build",
"build:release": "esno scripts/turbo.ts --cmd build --no-cache --declarationMap false",
"check:packageFiles": "esno scripts/checkPackageFiles.ts",
"dep:update": "pnpm up --interactive --latest --recursive",
"dev": "esno scripts/turbo.ts --cmd dev",
"doc:build": "umi build",
"doc:dev": "umi dev",
"format": "prettier --write .",
"preinstall": "npx only-allow pnpm",
"postinstall": "esno scripts/postinstall.ts",
"jest": "jest",
"prepare": "husky install",
"release": "esno scripts/release.ts",
"setup:webstorm": "esno scripts/setupWebStorm.ts",
"test": "echo test",
"test:clean": "esno scripts/turbo.ts --cmd test --no-cache --parallel -- --clearCache",
"tsc:check": "tsc --noEmit",
"turbo:clean": "rimraf .turbo"
},
"lint-staged": {
"*.{jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^17.0.42",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"@types/resolve": "^1.20.2",
"@types/rimraf": "3.0.2",
"@umijs/bundler-utils": "4.0.28",
"@umijs/plugin-docs": "4.0.28",
"@umijs/utils": "4.0.28",
"@vercel/ncc": "0.33.3",
"dts-packer": "^0.0.3",
"esno": "^0.14.1",
"git-repo-info": "^2.1.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"lint-staged": "^12.5.0",
"matcher": "^5.0.0",
"only-allow": "^1.1.0",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-packagejson": "^2.2.18",
"react": "17.0.2",
"react-dom": "17.0.2",
"regenerator-runtime": "^0.13.9",
"resolve": "^1.22.0",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"turbo": "^1.2.16",
"typescript": "^4.7.3",
"uglify-js": "^3.16.0",
"umi": "4.0.28",
"zx": "^4.3.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14",
"pnpm": ">=7"
}
}