-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 926 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 926 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
{
"name": "skoss",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"reset:demo-runtime": "node scripts/reset-runtime-demo-store.mjs",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"skoss:backup:json": "node scripts/backup-runtime-json.mjs",
"skoss:restore:json": "node scripts/restore-runtime-json.mjs"
},
"dependencies": {
"next": "15.3.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"drizzle-orm": "0.44.2",
"postgres": "3.4.7"
},
"devDependencies": {
"@types/node": "22.14.0",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"eslint": "9.23.0",
"eslint-config-next": "15.3.0",
"typescript": "5.8.2",
"drizzle-kit": "0.31.5"
}
}