-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 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
{
"name": "hackathontesting",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:server": "node server/index.js",
"dev:all": "npm run dev:server & npm run dev",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@openrouter/sdk": "^0.4.0",
"@tailwindcss/vite": "^4.1.18",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^5.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.13.0",
"retell-sdk": "^4.66.0",
"tailwindcss": "^4.1.18",
"three": "^0.182.0",
"ws": "^8.18.3",
"lucide-react": "^0.469.0",
"framer-motion": "^11.15.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/node": "^22.10.5",
"@types/ws": "^8.5.13",
"@types/express": "^5.0.0",
"@types/cors": "^2.8.17",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "^5.7.2",
"vite": "^7.2.4",
"vitest": "^3.2.4"
}
}