-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 881 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 881 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
{
"name": "listee-api",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"db:migrate": "drizzle-kit migrate --config drizzle.config.ts"
},
"dependencies": {
"@listee/api": "0.3.2",
"@listee/auth": "0.5.0",
"@listee/db": "0.4.0",
"@listee/types": "0.5.0",
"@t3-oss/env-nextjs": "0.13.8",
"drizzle-orm": "0.44.5",
"next": "15.5.9",
"react": "19.2.1",
"react-dom": "19.2.1",
"zod": "4.1.12"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.0",
"jiti": "^2.6.1",
"typescript": "^5"
}
}