-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 1.21 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
{
"name": "bergen-hotel-booking",
"version": "0.1.0",
"description": "Noroff project exam 2",
"author": "Nancy Bolstad <litchacha@gmail.com>",
"private": true,
"scripts": {
"setup:npm": "npm install && npm-run-all -p setup:npm:*",
"setup:npm:functions": "cd functions && npm install",
"setup:npm:client": "cd client && npm install",
"develop:npm": "npm-run-all -p develop:npm:*",
"develop:npm:functions": "cd functions && npm run start",
"develop:npm:client": "cd client && npm run start",
"setup:yarn": "yarn && npm-run-all -p setup:yarn:*",
"setup:yarn:functions": "cd functions && yarn install",
"setup:yarn:client": "cd client && yarn install",
"develop:yarn": "npm-run-all -p develop:yarn:*",
"develop:yarn:functions": "cd functions && yarn start",
"develop:yarn:client": "cd client && yarn start",
"build:npm": "cd client && npm install && npm run build",
"build:yarn": "cd client && yarn install && yarn build",
"deploy-firebase:npm": "cd functions && npm install && npm run deploy",
"deploy-firebase:yarn": "cd functions && yarn install && yarn deploy"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"license": "MIT",
"dependencies": {}
}