-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.63 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
{
"name": "maxev-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3001",
"build": "node --require ./fix-readlink.js node_modules/next/dist/bin/next build && node -e \"const fs=require('fs'),p='.next/prerender-manifest.json';if(!fs.existsSync(p))fs.writeFileSync(p,JSON.stringify({version:4,routes:{},dynamicRoutes:{},notFoundRoutes:[],preview:{previewModeId:'',previewModeSigningKey:'',previewModeEncryptionKey:''}}))\"",
"start": "next start --port 3001",
"lint": "next lint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@auth/prisma-adapter": "^2.7.4",
"@prisma/client": "^6.0.0",
"@stripe/stripe-js": "^3.0.6",
"@types/mailparser": "^3.4.6",
"@types/pg": "^8.20.0",
"bcryptjs": "^2.4.3",
"bullmq": "^5.0.0",
"date-fns": "^3.6.0",
"imapflow": "^1.3.3",
"ioredis": "^5.4.2",
"lucide-react": "^0.468.0",
"mailparser": "^3.9.8",
"next": "15.3.2",
"next-auth": "^5.0.0-beta.25",
"nodemailer": "^6.10.1",
"pdf-lib": "^1.17.1",
"pg": "^8.21.0",
"prisma": "^6.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"stripe": "^14.21.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"tailwindcss": "^4",
"typescript": "^5"
}
}