-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.08 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.08 KB
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
{
"name": "firebase-template",
"private": true,
"description": "A template for a Firebase project with a webapp, firestore rules, storage rules, remote config, functions, developer friendly, and with a built-in CI",
"author": {
"name": "Raphael Brandão",
"url": "https://github.com/raphaelbs"
},
"bugs": {
"url": "https://github.com/raphaelbs/firebase-template/issues"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:client": "cd client && npm run dev",
"dev:functions": "cd functions && npm run dev",
"dev:firebase": "firebase emulators:start --import startup-data",
"firebase:export": "firebase emulators:export startup-data",
"start": "npm-run-all2 --parallel dev:client dev:functions dev:firebase"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raphaelbs/firebase-template.git"
},
"license": "ISC",
"homepage": "https://github.com/raphaelbs/firebase-template#readme",
"devDependencies": {
"firebase-tools": "^13.4.1",
"npm-run-all2": "^6.1.2"
}
}