-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.22 KB
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": "iot-fota-platform",
"type": "module",
"private": true,
"scripts": {
"build": "bun --filter '*' --parallel --output-style grouped build",
"build:api": "bun --filter '@fota/api' build",
"build:packages": "bun --filter './packages/*' --parallel --output-style grouped build",
"build:web": "bun --filter '@fota/web' build",
"db:generate": "bun --filter '@fota/database' db:generate",
"db:migrate": "bun --filter '@fota/database' db:migrate",
"dev": "bun --filter '*' --parallel --output-style grouped dev",
"lint": "bun --filter '*' --parallel --output-style grouped lint",
"lint:fix": "bun --filter '*' --parallel --output-style grouped lint:fix",
"prepare": "husky",
"test": "bun test --if-present --workspaces",
"typecheck": "bun --filter '*' --parallel --output-style grouped typecheck",
"watch:packages": "bun --filter './packages/*' --parallel --output-style grouped watch"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^26.1.1",
"bun-workspaces": "^1.12.0",
"eslint": "^10.7.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"lint-staged": "^17.1.1",
"typescript": "^6.0.3"
},
"workspaces": [
"apps/*",
"packages/*"
]
}