-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.28 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
{
"name": "functions",
"description": "Cloud Functions for Firebase",
"scripts": {
"dev": "npm run prepare-env && npm run prepare-npm && babel src -w -d build & npm run shell",
"dev-serve": "npm run prepare-env && npm run prepare-npm && babel src -w -d build & npm run serve",
"prepare-npm": "cp package.json build && npm --prefix ./build install --production",
"prepare-env": "firebase functions:config:get > .runtimeconfig.json && mv .runtimeconfig.json build",
"build": "npm run prepare-npm && babel src -d build",
"watch": "babel-watch src/index.js",
"serve": "firebase serve --only functions",
"shell": "firebase experimental:functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"deploy-dev": "firebase -P sheet-crypto-dev deploy --only functions",
"logs": "firebase functions:log"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.2",
"firebase-admin": "~5.5.0",
"firebase-functions": "^0.7.1",
"lodash": "^4.17.4",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"winston": "^2.4.0",
"winston-papertrail": "^1.0.5"
},
"private": true,
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-watch": "^2.0.7"
}
}