-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
32 lines (32 loc) · 1.25 KB
/
package.json
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
27
28
29
30
31
32
{
"name": "foxvalleymeetup-aspnet-signalr-nuxtjs",
"version": "1.0.0",
"description": "Building Apps with VueJS, NuxtJS, SignalR and .NET core",
"main": "index.js",
"scripts": {
"bump": "node ./scripts/bump.js --dir=src-server && git add . && git commit -m 'version bump'",
"bump:set": "node ./scripts/bump.js --dir=src-server --set=1.0.0.0",
"bump:major": "node ./scripts/bump.js --dir=src-server --increment=major",
"bump:minor": "node ./scripts/bump.js --dir=src-server --increment=minor",
"bump:patch": "node ./scripts/bump.js --dir=src-server --increment=patch",
"deploy": "node ./scripts/bump.js --dir=src-server && ./scripts/deploy.sh",
"server": "cd src-server/app && dotnet watch run",
"client": "cd src-client/app && npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattjcowan/foxvalleymeetup-aspnet-signalr-nuxtjs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mattjcowan/foxvalleymeetup-aspnet-signalr-nuxtjs/issues"
},
"homepage": "https://github.com/mattjcowan/foxvalleymeetup-aspnet-signalr-nuxtjs#readme",
"devDependencies": {
"args-parser": "1.1.0",
"filehound": "1.16.7",
"fs-extra": "7.0.1"
}
}