-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.73 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.73 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
{
"name": "funil-perseguicao",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"worker": "tsx src/worker.ts",
"db:seed": "tsx prisma/seed.ts",
"db:reset": "npx prisma migrate reset --force && npm run db:seed",
"postinstall": "prisma generate",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=20.19.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^3.0.3",
"bullmq": "^5.71.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"ioredis": "^5.10.0",
"jose": "^6.2.1",
"lucide-react": "^0.577.0",
"next": "16.1.7",
"pg": "^8.20.0",
"prisma": "^7.5.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"recharts": "^3.8.0",
"resend": "^6.9.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20.19.37",
"@types/pg": "^8.18.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.0"
}
}