-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "agentcasino",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "tsx --import ./env-preload.ts server.ts",
"dev:next": "next dev",
"build": "npm run build:mimi-id && next build",
"build:mimi-id": "cd packages/mimi-id && npm install --silent && npm run build",
"start": "NODE_ENV=production tsx server.ts",
"lint": "eslint",
"test:agents": "bash test/test-agents.sh",
"test:agents:low": "bash test/test-agents.sh casino_low_1",
"test:agents:mid": "bash test/test-agents.sh casino_mid_1",
"test:agents:high": "bash test/test-agents.sh casino_high_1"
},
"dependencies": {
"@supabase/supabase-js": "^2.100.0",
"next": "16.2.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}