-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 784 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 784 Bytes
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
{
"version": "2.0.4",
"description": "Frontend model",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "pnpm -r --parallel --filter='./packages/*' run dev",
"test": "vitest run",
"prettier": "pretty-quick --staged",
"build": "pnpm -r --filter='./packages/*' run build",
"play": "pnpm -C playground run dev",
"release": "bumpp package.json packages/**/package.json",
"prepublishOnly": "npm run test && npm run build"
},
"pre-commit": [
"test",
"prettier"
],
"author": "wyy.xb@qq.com",
"license": "ISC",
"devDependencies": {
"@types/enzyme": "^3.10.12",
"bumpp": "^8.2.1",
"father": "^4.0.5",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"vitest": "^0.23.4"
}
}