-
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) · 953 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 953 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": "Tutor.web",
"version": "1.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -k -n \"SERVER,WEB\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm run server\" \"npm run web\"",
"server": "node server.js",
"web": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "node server.js"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"lucide-react": "^0.344.0",
"morgan": "^1.10.1",
"multer": "^1.4.5-lts.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@vitejs/plugin-react": "^5.0.2",
"autoprefixer": "^10.4.21",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.14",
"vite": "^5.4.10"
}
}