forked from stefanbohacek/detective
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 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
53
54
55
56
57
58
{
"name": "detective",
"version": "3.1.0",
"description": "Farcaster mini app - AI detective game with horizontal scaling support",
"private": true,
"type": "module",
"packageManager": "bun@1.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"db:setup": "node scripts/setup-database.js",
"test:database": "node scripts/test-database.js",
"test:redis": "node scripts/test-redis.js",
"test:ai": "node scripts/test-ai.js",
"test:all": "node scripts/test-all.js",
"test": "node scripts/test-all.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.0",
"@farcaster/auth-kit": "^0.6.1",
"@farcaster/miniapp-sdk": "^0.2.1",
"@neynar/nodejs-sdk": "^3.97.0",
"@tailwindcss/postcss": "^4.1.17",
"@tanstack/react-query": "^5.90.11",
"@types/three": "^0.181.0",
"framer-motion": "^12.23.24",
"lightningcss": "1.27.0",
"next": "15.5.9",
"openai": "^4.104.0",
"qrcode.react": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-responsive": "^10.0.1",
"swr": "^2.3.6",
"three": "^0.181.2"
},
"optionalDependencies": {
"ioredis": "^5.3.2",
"pg": "^8.16.3"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/pg": "^8.10.9",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.57.0",
"eslint-config-next": "^15.5.7",
"postcss": "^8.4.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0"
},
"author": "stefan@stefanbohacek.com",
"license": "MIT"
}