-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 899 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 899 Bytes
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
{
"name": ".",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "nodemon -w src/server -x 'tsx src/server/main.ts' & python3 src/server/main.py",
"start": "NODE_ENV=production tsx src/server/main.ts",
"build": "vite build"
},
"dependencies": {
"@google/generative-ai": "^0.24.0",
"@tailwindcss/vite": "^4.1.2",
"@types/ws": "^8.18.1",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"ollama": "^0.5.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^4.1.2",
"tsx": "^4.3.0",
"typescript": "^5.3.2",
"vite-express": "*",
"ws": "^8.18.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.9.3",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.2.16",
"@vitejs/plugin-react": "^4.2.0",
"nodemon": "^3.0.1",
"vite": "^5.0.2"
}
}