-
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.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 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": "divest",
"version": "1.3.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:e2e": "playwright test",
"db:seed": "npx tsx prisma/seed.ts",
"db:push": "npx prisma db push",
"db:studio": "npx prisma studio"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "7.5.0",
"bcryptjs": "^3.0.3",
"cheerio": "^1.0.0",
"next": "^16.1.7",
"next-auth": "5.0.0-beta.30",
"pg": "^8.20.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"recharts": "^3.8.0",
"unpdf": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^16.0.0",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.1",
"vite": "^8.0.0",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^9.0.0",
"eslint-config-next": "^16.0.0",
"jsdom": "^29.0.0",
"prisma": "^7.5.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.6.0",
"vitest": "^4.1.0"
}
}