-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 734 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 734 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
{
"name": "rushpredmkt",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"check": "turbo run check",
"test": "turbo run test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"clean": "turbo run clean && rm -rf node_modules",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"drizzle-kit": "0.30.4",
"turbo": "^2.3.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}