-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "doctors-all",
"version": "0.0.37",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"pnpm:devPreinstall": "node ./scripts/preinstall.js && pnpm recursive exec -- rm -rf node_modules",
"dev": "father dev",
"build:all": "pnpm run -r build",
"test:all": "pnpm run -r test",
"prepare": "husky install",
"release": "bumpp -r",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^20.3.1",
"@types/prettier": "^2.7.3",
"@doctors/core": "workspace:*",
"@doctors/utils": "workspace:*",
"@doctors/npm-pkg": "workspace:*",
"@doctors/web-tools": "workspace:*",
"bumpp": "^9.1.1",
"father": "^4.1.8",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"typescript": "^5.1.3",
"vitest": "^0.32.2"
},
"lint-staged": {
"*.{ts,tsx,md,mdx}": [
"prettier --write --ignore-unknown"
],
"*.{ts,tsx}": [
"tsc --noEmit --skipLibCheck --esModuleInterop --downlevelIteration"
]
},
"keywords": [],
"author": "",
"license": "MIT"
}