manifold/functions/package.json

31 lines
734 B
JSON
Raw Normal View History

2021-12-10 18:10:30 +00:00
{
"name": "functions",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
2021-12-19 22:08:25 +00:00
"serve": "yarn build && firebase emulators:start --only functions",
"shell": "yarn build && firebase functions:shell",
"start": "yarn shell",
2021-12-10 18:10:30 +00:00
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "14"
},
"main": "lib/index.js",
"dependencies": {
2021-12-18 02:12:58 +00:00
"fetch": "1.1.0",
2021-12-11 00:06:17 +00:00
"firebase-admin": "10.0.0",
2021-12-14 07:02:50 +00:00
"firebase-functions": "3.16.0",
"lodash": "4.17.21",
"mailgun-js": "0.22.0",
"stripe": "8.194.0"
2021-12-10 18:10:30 +00:00
},
"devDependencies": {
"@types/mailgun-js": "0.22.12",
2021-12-11 00:06:17 +00:00
"firebase-functions-test": "0.3.3",
"typescript": "4.5.3"
2021-12-10 18:10:30 +00:00
},
"private": true
}