-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
57 lines (57 loc) · 1.65 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
{
"name": "vite-ant-design-pro",
"private": true,
"version": "0.0.0",
"packageManager": "[email protected]",
"description": "",
"keywords": [],
"homepage": "https://vite-ant-design-pro.vercel.app",
"bugs": {
"url": "https://github.com/Dunqing/vite-ant-design-pro/issues"
},
"license": "MIT",
"author": "dengqing <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/Dunqing/vite-ant-design-pro.git"
},
"sideEffects": false,
"scripts": {
"preinstall": "npx only-allow pnpm",
"play": "pnpm run --filter ./playground dev",
"dev": "pnpm --filter {packages/*} --parallel run dev",
"build": "pnpm --filter {packages/*} run build",
"lint": "eslint --fix .",
"prepare": "husky install",
"prepublishOnly": "pnpm run build",
"release": "bumpp packages/*/package.json --no-verify --commit --push --tag && pnpm --filter {packages/*} publish",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^18.7.4",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"bumpp": "^8.2.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"magic-string": "^0.26.2",
"pnpm": "^7.9.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"tsup": "^6.2.2",
"typescript": "^4.7.4",
"vite": "^3.0.7",
"vitest": "^0.21.1"
},
"pnpm": {
"overrides": {
"esbuild": "^0.15.0"
}
}
}