-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.23 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
33
34
35
{
"name": "givinggiftsguide",
"version": "1.0.0",
"description": "Giving Gifts Guide is the guide to giving great gifts",
"homepage": "http://github.com/BramDC3/",
"scripts": {
"start": "node server",
"deploy-backend": "git subtree push --prefix givinggiftsguide/backend givinggiftsguide-backend master ",
"build-frontend": "cd givinggiftsguide/frontend && ng build --prod",
"commit-build-changes": "git add . && git commit -m 'push'",
"deploy-frontend": "npm run build-frontend && npm run copy && npm run commit-build-changes && git subtree push --prefix serve-frontend givinggiftsguide-frontend master",
"copy": "cpx 'frontend/dist/**' serve-frontend/www"
},
"author": {
"name": "Bram De Coninck",
"email": "[email protected]",
"web": "http://www.github.com/BramDC3/"
},
"repository": {
"type": "git",
"url": "git://github.com/BramDC3/Giving-Gifts-Guide/"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"connect": "^3.6.5",
"serve-static": "^1.13.1"
},
"license": "MIT",
"devDependencies": {
"copyfiles": "^2.0.0",
"cpx": "^1.5.0"
}
}