-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.19 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
{
"name": "poros",
"version": "1.1.7",
"private": true,
"scripts": {
"bootstrap": "poros-scripts bootstrap",
"build": "poros-scripts turbo build",
"build:extra": "poros-scripts turbo build:extra",
"build:force": "poros-scripts turbo build --no-cache",
"build:release": "poros-scripts turbo build --no-cache",
"changelog": "poros-scripts changelog",
"format": "prettier --write .",
"preinstall": "npx only-allow pnpm",
"postinstall": "poros-scripts postinstall",
"jest": "jest",
"prepare": "husky install",
"release": "poros-scripts release",
"tsc:check": "tsc --noEmit",
"changeset": "esno scripts/changeset.ts",
"version-packages": "changeset version"
},
"keywords": [
"electron",
"umi",
"react",
"typescript"
],
"author": "王建明 <[email protected]>",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@manypkg/get-packages": "^2.1.0",
"@pnpm/lockfile-file": "^8.0.1",
"@types/resolve": "^1.20.2",
"@umijs/utils": "4.1.10",
"@vercel/ncc": "^0.36.1",
"browserslist": "4.21.5",
"dts-packer": "^0.0.3",
"father": "^4.0.65",
"git-repo-info": "^2.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"poros-scripts": "workspace:*",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"resolve": "^1.22.3",
"rimraf": "^4.4.1",
"tsx": "^3.12.6",
"turbo": "^1.9.1",
"typescript": "^5.0.4",
"zx": "^7.2.1"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "esno scripts/verifyCommit.ts"
},
"lint-staged": {
"*.{jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14",
"pnpm": ">=8"
},
"//why-overrides-browserslist": "See scripts/bundleDeps.ts",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom",
"antd",
"postcss",
"webpack",
"eslint",
"stylelint",
"redux"
]
},
"overrides": {
"browserslist": "$browserslist"
}
}
}