-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1001 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 1001 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
{
"name": "smartmix",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -n backend,frontend -c cyan,green \"pnpm backend\" \"pnpm frontend\"",
"frontend": "vite --host 127.0.0.1 --port 3000",
"backend": "node scripts/python-runner.mjs --require-backend -m uvicorn backend.main:app --host 127.0.0.1 --port 8002 --reload",
"check": "node --check src/main.js",
"typecheck": "tsc --noEmit",
"setup:backend": "node scripts/python-runner.mjs -m pip install -r backend/requirements.txt",
"setup:segmentation": "node scripts/python-runner.mjs -m pip install -r backend/requirements-segmentation.txt",
"setup:tuning": "node scripts/python-runner.mjs -m pip install -r backend/requirements-tuning.txt"
},
"devDependencies": {
"@types/node": "^25.8.0",
"concurrently": "^9.2.1",
"typescript": "^6.0.3",
"vite": "^7.2.4",
"vitest": "^4.1.6"
},
"dependencies": {
"@superpoweredsdk/web": "2.7.2"
}
}