-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·107 lines (107 loc) · 2.82 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
103
104
105
106
107
{
"private": true,
"keywords": [],
"license": "ISC",
"author": "ammengweilai",
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "chu-scripts bootstrap",
"build": "turbo run build",
"build:deps": "chu-scripts bundleDeps",
"build:release": "chu-scripts turbo build --no-cache",
"check:packageFiles": "chu-scripts checkPackageFiles",
"dev": "turbo run dev --parallel",
"format": "prettier --cache --write .",
"format:docs": "prettier 'docs/**/*.{md,mdx}' --write --ignore-path .gitignore --ignore-unknown",
"format:plugin-docs": "prettier 'packages/plugin-docs/**/*' --write --ignore-unknown",
"preinstall": "npx only-allow pnpm",
"postinstall": "chu-scripts postinstall",
"lint": "turbo run lint",
"prepare": "husky install",
"release": "chu-scripts release",
"reset": "chu-scripts resetNodeModules",
"test": "jest --passWithNoTests",
"turbo:clean": "rimraf .turbo"
},
"lint-staged": {
"*.{jsx,less,md,json}": [
"prettier --cache --write"
],
"*.ts?(x)": [
"prettier --cache --parser=typescript --write"
]
},
"devDependencies": {
"@anmeng/test": "workspace:*",
"@anmeng/utils": "workspace:*",
"@pnpm/lockfile-file": "^5.3.1",
"@pnpm/logger": "^4.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.6",
"@types/node": "^17.0.12",
"@types/resolve": "^1.20.2",
"@types/rimraf": "3.0.2",
"@vercel/ncc": "0.33.3",
"dts-packer": "^0.0.3",
"father": "4.0.0-rc.7",
"fs-extra": "^10.1.0",
"git-repo-info": "^2.1.1",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jest-circus": "^26.6.3",
"jest-environment-node": "^26.6.2",
"jest-playwright-preset": "^1.7.2",
"jest-runner": "^26.6.3",
"lerna": "^5.3.0",
"lint-staged": "^13.0.3",
"matcher": "^5.0.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "3.0.1",
"prettier-plugin-packagejson": "^2.2.18",
"resolve": "^1.22.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.2",
"tsup": "^6.2.1",
"tsx": "^3.8.0",
"turbo": "^1.3.1",
"typescript": "^4.7.4",
"zx": "^7.0.7"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"compiledConfig": {
"deps": [
"chalk",
"cross-spawn",
"fs-extra"
],
"externals": {
"chalk": "$$LOCAL",
"cross-spawn": "$$LOCAL",
"fs-extra": "$$LOCAL"
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom",
"antd",
"dva",
"postcss",
"webpack",
"eslint",
"stylelint",
"redux"
]
}
},
"_local": "This flag is used to check if the development in local, Please do not delete."
}