-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 755 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "project-assignment-manager",
"version": "1.0.0",
"description": "Full-stack project assignment manager",
"scripts": {
"start": "concurrently \"npm run start:api\" \"npm run start:ui\"",
"start:api": "cd ProjectAssignmentManager.API && dotnet run",
"start:ui": "cd ProjectAssignmentManager.UI && ng serve --open",
"build": "npm run build:api && npm run build:ui",
"build:api": "cd ProjectAssignmentManager.API && dotnet build",
"build:ui": "cd ProjectAssignmentManager.UI && ng build",
"install:ui": "cd ProjectAssignmentManager.UI && npm install",
"setup": "npm run install:ui && cd ProjectAssignmentManager.UI && .\\copy-all-templates.ps1"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}