forked from parazeeknova/bitwork
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 990 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 990 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
34
35
36
37
38
39
40
{
"name": "bitwork",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"check-types": "turbo run check-types",
"check": "ultracite fix --unsafe",
"env": "bun run scripts/setup-env.ts",
"db:gen": "cd packages/db && bun run generate",
"db:push": "cd packages/db && bun run push",
"prepare": "lefthook install"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@types/bun": "^1.3.9",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"lefthook": "^2.1.1",
"lint-staged": "^16.2.7",
"turbo": "^2.8.9",
"typescript": "^5.9.3",
"ultracite": "^7.2.2"
},
"packageManager": "bun@1.3.9",
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"bun x ultracite fix --unsafe"
]
},
"dependencies": {
"axios": "^1.13.5",
"lucide-react": "^0.563.0"
}
}