-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 933 Bytes
/
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
{
"$schema": "https://json.schemastore.org/package.json",
"devDependencies": {
"@ptb/eslint-config": "2024.8.20",
"@ptb/prettier-config": "2024.8.20",
"@ptb/typescript-config": "2024.8.20",
"lefthook": "1.7.14",
"typescript": "5.5.4"
},
"engines": {
"node": "^20.9 || ^22",
"pnpm": "^9"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@typescript-eslint/parser": "8"
}
}
},
"private": true,
"scripts": {
"build:web": "pnpm --dir web build",
"check:lint": "eslint --max-warnings 0 --no-warn-ignored --report-unused-disable-directives",
"check:tidy": "prettier --check",
"check:type": "pnpm --parallel --reporter-hide-prefix --stream -r '/check:type/'",
"postinstall": "lefthook install"
},
"type": "module",
"workspaces": [
"./api",
"./app",
"./doc",
"./lib",
"./pkg/*",
"./sql",
"./web"
]
}