-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 1.07 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
{
"name": "react-firebase-boilerplate",
"version": "0.0.1",
"description": "react - firebase boilerplate. I have enabled firebase cloud functions & hosting. At the time of writing it has the latest react starter app. And expecting to add features like git/bitbucket CICD etc.",
"main": "none",
"scripts": {
"setup": "npm install firebase-tools -g && firebase login && firebase init && cd ./web && npm i && npm run build && cd .. && cd ./functions && npm i && npm run build && cd .. && firebase serve",
"serve": "firebase serve",
"update": "cd ./web && yarn upgrade-interactive --latest && cd .. && cd ./functions && yarn upgrade-interactive --latest && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/razorRun/react-firebase-boilerplate.git"
},
"keywords": [
"react",
"firebase",
"boilerplate"
],
"author": "Roshan Milinda",
"license": "MIT",
"bugs": {
"url": "https://github.com/razorRun/react-firebase-boilerplate/issues"
},
"homepage": "https://github.com/razorRun/react-firebase-boilerplate#readme"
}