-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
32 lines (32 loc) · 962 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
{
"name": "balanced-network-interface",
"version": "1.0.0",
"private": true,
"description": "",
"workspaces": ["apps/*", "packages/*"],
"packageManager": "pnpm@9.5.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "turbo run dev --filter=web...",
"dev:stats": "turbo run dev --filter=stats...",
"dev:hswap": "turbo run dev --filter=hswap...",
"build": "turbo run build --filter=web...",
"build:stats": "turbo run build --filter=stats...",
"build:hswap": "turbo run build --filter=hswap...",
"pretty": "turbo run pretty",
"clean": "turbo run clean && rm -rf node_modules && rm -rf .turbo",
"checkTs": "turbo run checkTs",
"lint": "turbo run lint",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"turbo": "^2.0.12",
"typescript": "5.5.4"
}
}