-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "akritos",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"overrides": {
"nodemailer": "$nodemailer"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@base-ui/react": "^1.5.0",
"@prisma/client": "^6.19.3",
"@react-pdf/renderer": "^4.5.1",
"@rgrove/parse-xml": "^4.2.0",
"@tanstack/react-query": "^5.101.0",
"@trpc/client": "^11.17.0",
"@trpc/next": "^11.17.0",
"@trpc/react-query": "^11.13.0",
"@trpc/server": "^11.13.0",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"lucide-react": "^1.18.0",
"next": "^16.2.9",
"next-auth": "^5.0.0-beta.31",
"nodemailer": "^9.0.1",
"pino": "^10.3.1",
"prisma": "^6.19.2",
"react": "19.2.7",
"react-dom": "19.2.7",
"server-only": "^0.0.1",
"shadcn": "^4.11.0",
"stripe": "^22.2.1",
"superjson": "^2.2.6",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^25",
"@types/nodemailer": "^8.0.1",
"@types/pino": "^7.0.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.8",
"dotenv": "^17.4.2",
"eslint": "^10",
"eslint-config-next": "16.2.9",
"tailwindcss": "^4",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}