-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.17 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
{
"name": "ticket-booking",
"version": "1.0.0",
"description": "A ticket booking website created for the circus group Arctic Ensemble",
"main": "backend/build/index.js",
"scripts": {
"start": "cd backend && npm start",
"stop": "cd backend && npm stop",
"install": "cd shared && npm i && cd ../backend && npm i && cd ../frontend && npm i",
"build": "cd shared && npm run build && cd ../backend && npm run build && cd ../frontend && npm run build",
"fetch": "git fetch --all && git reset --hard origin/master",
"prod": "npm i --omit=dev && npm run build && npm start",
"deploy": "npm run fetch && npm run prod",
"backup": "rsync -a --delete backend/build/ backup",
"rollback": "rsync -a --delete backup/ backend/build && npm start",
"lint": "cd backend && npm run lint && cd ../frontend && npm run lint && cd ../shared && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SirVeggie/Ticket-Booking.git"
},
"author": "Veikka Pulsa",
"license": "MIT",
"bugs": {
"url": "https://github.com/SirVeggie/Ticket-Booking/issues"
},
"homepage": "https://github.com/SirVeggie/Ticket-Booking#readme"
}