-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 981 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 981 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
{
"name": "microcrowd",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"backend:install": "cd ../microcrowd-enhanced/backend && chmod +x start.sh && python3 -m venv venv && source venv/bin/activate && pip install -r requirements.txt",
"backend:start": "cd ../microcrowd-enhanced/backend && bash -c 'source venv/bin/activate && uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload'",
"backend:setup": "cd ../microcrowd-enhanced/backend && ./start.sh",
"start": "npm run backend:start & npm run dev",
"start:full": "concurrently \"npm run backend:start\" \"npm run dev\""
},
"dependencies": {
"react": "^19.1.0",
"openai": "^4.80.1",
"react-router-dom": "^7.6.2",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/node": "^22.14.0",
"typescript": "~5.7.2",
"vite": "^6.2.0",
"concurrently": "^9.1.0"
}
}