-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.46 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": "cashflow-agent",
"version": "0.1.0",
"private": true,
"description": "Cashflow Agent - reply-aware collections",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"postinstall": "prisma generate",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@auth/core": "^0.34.3",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.22.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.3",
"next": "^16.2.9",
"next-auth": "^4.24.8",
"playwright": "^1.60.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"resend": "^6.14.0",
"stripe": "^17.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitest/coverage-v8": "^4.1.9",
"autoprefixer": "^10.4.19",
"lucide-react": "^0.400.0",
"postcss": "^8.5.15",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.4",
"tsx": "^4.19.0",
"typescript": "^5.5.0",
"vitest": "^4.1.9"
},
"overrides": {
"nodemailer": "^9.0.1",
"cookie": "^0.7.0",
"uuid": "^11.1.1",
"next": {
"postcss": "^8.5.10"
}
}
}