-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
13 lines (13 loc) · 786 Bytes
/
package.json
File metadata and controls
13 lines (13 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"name": "Module7",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "dotnet run -p .\\src\\StoreOfBuild.Web\\StoreOfBuild.Web.csproj",
"migration": "cd .\\src\\storeofbuild.data\\ && dotnet ef --startup-project ..\\storeofbuild.web\\storeofbuild.web.csproj migrations add",
"migration-script": "cd .\\src\\storeofbuild.data\\ && dotnet ef --startup-project ..\\storeofbuild.web\\storeofbuild.web.csproj migrations script",
"remove-migration": "cd .\\src\\storeofbuild.data\\ && dotnet ef --startup-project ..\\storeofbuild.web\\storeofbuild.web.csproj migrations remove",
"database-update": "cd .\\src\\storeofbuild.data\\ && dotnet ef --startup-project ..\\storeofbuild.web\\storeofbuild.web.csproj database update"
}
}