-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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
{
"name": "village-os",
"version": "1.0.0",
"description": "A collaborative farming simulator framework for group text chats",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "nodemon --exec ts-node src/main.ts",
"watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"web": "run-p dev:web dev:vite"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"npm-run-all": "^4.1.5",
"npm-run-all2": "^8.0.4",
"prisma": "^6.15.0",
"shadcn": "^3.0.0",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"private": true,
"dependencies": {
"@google/genai": "^1.16.0",
"@google/generative-ai": "^0.24.1",
"@prisma/client": "^6.15.0",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@supabase/supabase-js": "^2.56.1",
"@types/express": "^5.0.3",
"@types/node-cron": "^3.0.11",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@types/socket.io": "^3.0.1",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^5.0.2",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"express": "^5.1.0",
"lucide-react": "^0.542.0",
"node-cron": "^4.2.1",
"pino": "^9.9.0",
"postcss": "^8.5.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.8.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^3.3.1",
"uuid": "^11.1.0",
"vite": "^7.1.3"
}
}