-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "{workspace}",
"private": true,
"scripts": {
"prod": "bun run check && turbo prod",
"dev": "turbo dev",
"lint": "turbo lint",
"db:generate": "bun --cwd packages/api db:generate",
"db:push": "bun --cwd packages/api db:push",
"db:studio": "bun --cwd packages/api db:studio",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,md}\"",
"clean": "turbo clean && rm -rf .turbo node_modules bun.lockb && bun i",
"check": "bun run format && bun run lint"
},
"devDependencies": {
"@types/bun": "^1.2.1",
"@types/node": "^22.10.10",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@{workspace}/eslint-config": "*",
"@{workspace}/ts-config": "*",
"drizzle-kit": "latest",
"eslint-plugin-drizzle": "^0.2.3",
"prettier": "^3.4.2",
"turbo": "latest",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"trustedDependencies": [
"es5-ext"
],
"dependencies": {
"@auth/drizzle-adapter": "^1.7.4",
"@sinclair/typebox": "^0.34.13",
"@typeschema/typebox": "^0.14.0",
"drizzle-orm": "^0.38.4",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.1"
}
}