-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 789 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 789 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
33
{
"name": "parcnet",
"type": "module",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "biome check --diagnostic-level=error && turbo lint",
"test": "turbo test",
"knip": "knip --no-gitignore",
"format": "biome format --write",
"watch": "turbo watch build --filter='./packages/**'",
"prepare": "husky",
"check-all": "pnpm build && pnpm lint && pnpm test"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@changesets/cli": "^2.27.8",
"husky": "^9.1.6",
"knip": "^5.29.2",
"turbo": "^2.2.1",
"typescript": "^5.4.5",
"vitest": "^2.0.5"
},
"packageManager": "pnpm@8.15.6",
"engines": {
"node": ">=20"
},
"dependencies": {
"mprocs": "^0.7.1"
},
"pnpm": {}
}