-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.96 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "nodejs-firebase-api-template",
"version": "1.0.0",
"description": "NodeJS + Firebase Backend API Sample Application",
"scripts": {
"lint": "eslint .",
"login": "firebase login",
"login.reauth": "firebase login --reauth",
"fb.use": "firebase use --add",
"clean": "rm -rf dist",
"copy": "cpx '*{package.json,yarn.lock}' dist",
"prebuild": "yarn clean",
"build": "babel src --out-dir dist",
"postbuild": "yarn copy",
"serve": "yarn build && firebase serve --only functions",
"shell": "yarn build && firebase use test && firebase experimental:functions:shell",
"start": "firebase use test && nodemon",
"predeploy": "yarn build && firebase use test",
"deploy": "firebase deploy -P test --only functions",
"predeploy.prod": "yarn build && firebase use prod",
"deploy.prod": "firebase deploy -P prod --only functions",
"logs": "firebase functions:log",
"test": "jest --env=jsdom --watchAll --coverage --collectCoverageFrom=src/domain/**/*.js"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.3",
"firebase-admin": "~6.0.0",
"firebase-functions": "^2.0.3",
"firebase-tools": "^6.1.1",
"moment": "^2.22.2",
"uuid": "^3.3.2",
"uuid-validate": "^0.0.3"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"cpx": "^1.5.0",
"eslint": "^4.12.0",
"eslint-plugin-promise": "^3.6.0",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"regenerator-runtime": "^0.12.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielsimplicio/nodejs-firebase-api-template.git"
},
"author": "Gabriel Simplicio",
"license": "ISC",
"bugs": {
"url": "https://github.com/gabrielsimplicio/nodejs-firebase-api-template/issues"
},
"homepage": "https://github.com/gabrielsimplicio/nodejs-firebase-api-template#readme"
}