-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1 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
{
"name": "terrier",
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/bun": "^1.2.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.2",
"openapi-typescript": "^7.6.1",
"turbo": "^2.3.4",
"typescript": "5.7.3"
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*": ["bun run check"]
},
"packageManager": "bun@1.2.4",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"check": "biome check --write --unsafe --no-errors-on-unmatched --files-ignore-unknown=true",
"prepare": "husky",
"generate-schema": "openapi-typescript ../terrier-backend/api/src/main/resources/openapi.yaml -o schema.d.ts"
},
"workspaces": ["apps/*", "packages/*"]
}