-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 540 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 540 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "securecode-ai",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20.19.0"
},
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"dev": "concurrently --kill-others --names backend,frontend \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:frontend": "npm run dev --workspace=frontend",
"dev:backend": "npm run dev --workspace=securecode-ai-backend",
"build": "npm run build --workspaces --if-present"
},
"devDependencies": {
"concurrently": "^10.0.3"
}
}