forked from yansinhuang/iLeaves
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "functions",
"description": "ezBot API on Firebase Cloud Functions",
"scripts": {
"lint": "eslint .",
"build": "babel src/functions --out-dir dist/functions",
"serve": "firebase serve --only functions",
"shell": "firebase functions:shell",
"start": "npm run shell",
"copy": "cpx '*{package.json,yarn.lock}' dist/functions",
"deploy": "yarn copy && firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "8"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"firebase-admin": "^8.10.0",
"firebase-functions": "^2.2.0",
"moment-timezone": "^0.5.28",
"node-fetch": "^2.6.0",
"querystring": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.47",
"@babel/core": "^7.0.0-beta.47",
"@babel/preset-env": "^7.1.0",
"cpx": "^1.5.0",
"eslint": "^5.12.0",
"eslint-plugin-promise": "^4.0.1",
"firebase-tools": "^5.1.1"
},
"private": true
}