-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.58 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
57
58
{
"name": "study-bot",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"setup": "node scripts/setup.mjs",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:unit": "vitest run --exclude 'src/__tests__/integration/**'",
"test:integration": "vitest run src/__tests__/integration/",
"test:watch": "vitest",
"test:e2e": "playwright test",
"worker": "tsx scripts/worker.ts",
"db:up": "docker compose up -d db",
"db:down": "docker compose down",
"db:logs": "docker compose logs -f db",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:generate": "prisma generate",
"db:seed-research": "tsx scripts/seed-research.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^7.6.0",
"bcryptjs": "^3.0.3",
"nanoid": "^3.3.11",
"next": "^14.2.35",
"next-auth": "^4.24.13",
"nodemailer": "^7.0.13",
"pdf-parse": "^1.1.1",
"pg": "^8.20.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@vitejs/plugin-react": "^6.0.1",
"dotenv": "^17.4.2",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.35",
"prisma": "^7.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}