-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 791 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 791 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
30
31
32
{
"name": "react-fastify-gcp-skel",
"private": true,
"type": "module",
"packageManager": "pnpm@10.6.5",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "biome format --write .",
"format:check": "biome format .",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.1.0",
"husky": "^9.1.0",
"lint-staged": "^16.1.0",
"turbo": "^2.5.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,css}": [
"biome check --write --no-errors-on-unmatched"
]
},
"engines": {
"node": ">=22.0.0"
}
}