website/functions/package.json

23 lines
554 B
JSON
Raw Normal View History

2018-07-17 21:03:33 -04:00
{
"name": "functions",
"scripts": {
"build": "tsc",
"serve": "npm run build && firebase serve --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"main": "lib/index.js",
"dependencies": {
2018-07-22 18:18:45 -04:00
"cors": "^2.8.4",
2018-07-17 21:03:33 -04:00
"firebase-admin": "~5.12.1",
2018-07-22 17:40:20 -04:00
"firebase-functions": "^1.0.3",
"paypal-rest-sdk": "^1.8.1"
2018-07-17 21:03:33 -04:00
},
"devDependencies": {
"typescript": "^2.5.3"
},
"private": true
}