-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.06 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
{
"name": "prode",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "24.1.0"
},
"scripts": {
"postinstall": "npx prisma generate",
"dev": "node scripts/dev.cjs",
"dev:api": "node --watch api/server.cjs",
"dev:web": "vite",
"build": "vite build",
"lint": "eslint .",
"test": "node --test",
"verify": "npm run lint && npm run db:generate && npm run db:validate && npm run test && npm run build",
"preview": "vite preview",
"db:generate": "npx prisma generate",
"db:validate": "npx prisma validate",
"db:migrate": "npx prisma migrate dev",
"db:migrate:deploy": "npx prisma migrate deploy",
"db:migrate:status": "npx prisma migrate status",
"db:push": "npx prisma db push",
"db:seed": "node api/seed.cjs",
"db:backfill:translations": "node api/backfill-translations.cjs",
"db:studio": "npx prisma studio",
"import:results": "node scripts/import-results.cjs"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@prisma/adapter-neon": "^7.7.0",
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "^7.7.0",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^1.8.0",
"nodemailer": "^8.0.5",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.20.0",
"posthog-js": "^1.372.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.14.1",
"serverless-http": "^4.0.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@netlify/functions": "^5.2.0",
"@tailwindcss/vite": "^4.2.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"prisma": "^7.7.0",
"tailwindcss": "^4.2.2",
"vite": "^8.0.4"
}
}