-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 1015 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "course-manager",
"version": "1.0.0",
"private": true,
"description": "Root package to orchestrate the CourseManager Angular client and .NET server.",
"scripts": {
"postinstall": "npm run install:client -- --ignore-scripts && npm run install:server",
"dev": "concurrently -n server,client -c blue,green \"npm run server\" \"npm run client\"",
"client": "npm --prefix \"CourseManager/CourseManager.Client\" run start",
"server": "dotnet run --project \"CourseManager/CourseManager.Server/CourseManager.Server.csproj\"",
"build": "npm --prefix \"CourseManager/CourseManager.Client\" run build",
"test": "npm --prefix \"CourseManager/CourseManager.Client\" run test",
"install:client": "npm --prefix \"CourseManager/CourseManager.Client\" install",
"install:server": "dotnet restore \"CourseManager/CourseManager.Server/CourseManager.Server.csproj\""
},
"devDependencies": {
"concurrently": "^9.1.0"
}
}