forked from pm-self-learning/octocat-supply-copilot-exercise
-
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) · 731 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 731 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": "expert-octo-garbanzo",
"version": "1.0.0",
"description": "OctoCAT Supply Chain Management System",
"private": true,
"workspaces": [
"api",
"frontend"
],
"scripts": {
"build": "npm run build --workspaces",
"start": "npm run start:install --workspace=api",
"dev:api": "npm run dev --workspace=api",
"dev:frontend": "npm run dev --workspace=frontend",
"dev": "concurrently \"npm run dev:api\" \"npm run dev:frontend\"",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspace=frontend"
},
"devDependencies": {
"concurrently": "^6.2.1"
},
"license": "MIT",
"engines": {
"node": ">=18"
}
}