-
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.99 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.99 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": "plot-twists",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"dev": "tsx server.ts",
"build": "next build",
"start": "NODE_ENV=production tsx server.ts",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:unit": "jest --testPathPattern=__tests__/unit",
"generate:homepage-posters": "tsx scripts/generate-homepage-posters.ts"
},
"engines": {
"node": "22.x",
"npm": ">=10.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@anthropic-ai/sdk": "^0.72.1",
"@apple/app-store-server-library": "^2.0.0",
"@clerk/backend": "^2.32.1",
"@clerk/nextjs": "^6.38.2",
"@google/genai": "^1.39.0",
"@stripe/react-stripe-js": "^5.6.0",
"@stripe/stripe-js": "^8.7.0",
"@tailwindcss/postcss": "^4.1.18",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"canvas-confetti": "^1.9.4",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"firebase": "^12.8.0",
"firebase-admin": "^13.6.0",
"framer-motion": "^12.31.0",
"helmet": "^8.1.0",
"next": "^16.1.6",
"postcss": "^8.5.6",
"qrcode.react": "^4.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"stripe": "^20.3.1",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"twilio": "^5.12.1",
"uuid": "^13.0.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/canvas-confetti": "^1.9.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/node": "^25.2.0",
"@types/react": "^19.2.11",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.24",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}