-
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.69 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.69 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": "qdecision",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"postinstall": "prisma generate",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"start:local": "bash scripts/run_local.sh",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck && npm run test",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:e2e": "npm run build && playwright test"
},
"dependencies": {
"@prisma/adapter-better-sqlite3": "^7.5.0",
"@prisma/client": "^7.5.0",
"better-sqlite3": "^12.6.2",
"clsx": "^2.1.1",
"lucide-react": "^0.511.0",
"next": "^16.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^3.3.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@playwright/test": "^1.55.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.21",
"dotenv": "^17.3.1",
"eslint": "^9.34.0",
"eslint-config-next": "^16.1.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"prisma": "^7.5.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.21.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}