-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "aztec-recognize",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "pnpm exec prisma generate && next build --turbopack",
"postinstall": "pnpm exec prisma generate",
"start": "next start",
"lint": "eslint",
"test": "pnpm test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e": "playwright test"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.16.2",
"next": "15.5.3",
"next-auth": "^4.24.11",
"react": "19.1.0",
"react-dom": "19.1.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.55.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^3.2.4",
"cross-env": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "15.5.3",
"prisma": "^6.16.2",
"tailwindcss": "^4",
"tsx": "^4.20.5",
"typescript": "^5",
"vitest": "^3.2.4"
}
}