-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.64 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
{
"name": "appforge-ai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:api": "vitest run tests/api",
"test:db": "vitest run tests/database",
"test:all": "npm run test:e2e && npm run test:api && npm run test:db",
"verify": "npm run test:all",
"report": "playwright show-report",
"certify": "npm run test:all && echo 'Certification reports generated in /reports'"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@google/genai": "^2.7.0",
"@prisma/client": "^7.8.0",
"bcryptjs": "^2.4.3",
"d3": "latest",
"lucide-react": "^0.468.0",
"motion": "^11.15.0",
"next": "^15.1.7",
"next-auth": "^5.0.0-beta.31",
"papaparse": "^5.4.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"recharts": "^3.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.0.0-alpha.30",
"@types/bcryptjs": "^2.4.6",
"@types/d3": "*",
"@types/node": "^20.17.9",
"@types/papaparse": "^5.3.15",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1",
"@types/supertest": "^7.2.0",
"@vitest/coverage-v8": "^4.1.8",
"autoprefixer": "^10.5.0",
"eslint": "^8.57.1",
"eslint-config-next": "15.1.0",
"playwright": "^1.60.0",
"postcss": "^8.4.49",
"supertest": "^7.2.2",
"tailwindcss": "^4.0.0-alpha.30",
"typescript": "^5.7.2",
"vitest": "^4.1.8"
}
}