-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 936 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "Agronavis",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "concurrently --names \"API,WEB\" --prefix-colors \"green,cyan\" \"npm run dev:api\" \"npm run dev:web\"",
"dev:api": "node -e \"const{execSync}=require('child_process');const cmd=process.platform==='win32'?'backend\\\\\\\\venv\\\\\\\\Scripts\\\\\\\\uvicorn.exe main:app --reload --port 8000 --app-dir backend':'cd backend && ./venv/bin/uvicorn main:app --reload --port 8000';execSync(cmd,{stdio:'inherit',shell:true})\"",
"dev:web": "cd frontend && npm run dev",
"install:frontend": "npm install --prefix frontend",
"build": "npm run build --prefix frontend",
"lint": "npm run lint --prefix frontend",
"prepare": "husky"
},
"devDependencies": {
"supabase": "^2.105.0",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"concurrently": "^8.2.2",
"husky": "^9.1.7"
}
}