-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (30 loc) · 997 Bytes
/
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
36
37
{
"name": "firebase-messages-basic",
"version": "0.0.0-alpha.0",
"scripts": {
"postinstall": "npm install --prefix app && npm install --prefix functions",
"start": "firebase serve",
"pretest": "eslint --ext .js .",
"test": ":",
"deploy:app": "firebase deploy --only hosting",
"deploy:functions": "firebase deploy --only functions",
"deploy": "npm run deploy:app && npm run deploy:functions"
},
"devDependencies": {
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"firebase-bolt": "^0.8.2",
"firebase-tools": "^3.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/RomansBermans/firebase-messages-basic.git"
},
"bugs": {
"url": "https://github.com/RomansBermans/firebase-messages-basic/issues"
},
"homepage": "https://github.com/RomansBermans/firebase-messages-basic",
"author": "Romans Bermans <romans.bermans@gmail.com>",
"license": "ISC"
}