-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.13 KB
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
{
"name": "codeyam-project",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "playwright install chromium",
"setup": "npm install && npm run db:push && npm run db:seed",
"dev": "next dev --turbopack -H 127.0.0.1",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"db:push": "npx prisma db push && npx prisma generate",
"db:seed": "npx tsx prisma/seed.ts",
"db:reset": "rm -f dev.db && npm run db:push && npx tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/adapter-better-sqlite3": "^7.4.1",
"@prisma/client": "^7.4.1",
"better-sqlite3": "^12.6.2",
"next": "^16.1.7",
"prisma": "^7.4.1",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^15.3.3",
"tailwindcss": "^4",
"tsx": "^4.19.4",
"playwright": "^1.58.2",
"typescript": "^5",
"vitest": "^3"
}
}