-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.39 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "app",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.5.0",
"browserslist": [
"chrome >= 111",
"edge >= 111",
"firefox >= 111",
"safari >= 16.4"
],
"scripts": {
"dev": "next dev -p 5050",
"build": "next build",
"start": "next start -p 5050",
"lint": "eslint && tsx scripts/check-dictionaries.ts",
"docs:commands": "tsx scripts/check-commands-doc.ts",
"test": "vitest run",
"postinstall": "prisma generate",
"db:up": "docker compose up -d",
"db:down": "docker compose down",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:ingest": "tsx scripts/ingest-knowledge.ts",
"db:studio": "prisma studio"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^6.19.3",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"lucide-react": "^1.11.0",
"next": "16.2.4",
"next-auth": "^5.0.0-beta.31",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"jsdom": "^30.0.1",
"prisma": "^6.19.3",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^5.0.0"
}
}