-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 857 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 857 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": "ClankerLoop",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"db:generate": "cd packages/db && bun run db:generate",
"db:migrate": "cd packages/db && bun run db:migrate",
"db:push": "cd packages/db && bun run db:push",
"db:studio": "cd packages/db && bun run db:studio"
},
"devDependencies": {
"prettier": "^3.6.2",
"turbo": "^2.6.1",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.1.10",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"next": "^16.0.7"
}
}