af6387bbf3
* basic working payments * Select funds amount and prettier funds button / dialog * Add funds page and nav menu option * Format funds amount. Use ghost button for back. * Add mantic dollars description * Improve styles of add funds page * about styling * change faq => about * change default font to Courier * header sign out menu item; remove user card * keep logo font * fix header issue * stripe webhook: handle repeat events * Make add funds button a gradient * add funds referer url * Fix add funds page after merge * Slight VisD tweaks * Update add funds button position. Mantic => Manifold * Remove Add funds menu option for now. * Set up product ids and endpoint for stripe prod * Swap back order in profile menu Co-authored-by: mantikoros <sgrugett@gmail.com> Co-authored-by: Austin Chen <akrolsmir@gmail.com>
31 lines
734 B
JSON
31 lines
734 B
JSON
{
|
|
"name": "functions",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc -w",
|
|
"serve": "yarn build && firebase emulators:start --only functions",
|
|
"shell": "yarn build && firebase functions:shell",
|
|
"start": "yarn shell",
|
|
"deploy": "firebase deploy --only functions",
|
|
"logs": "firebase functions:log"
|
|
},
|
|
"engines": {
|
|
"node": "14"
|
|
},
|
|
"main": "lib/index.js",
|
|
"dependencies": {
|
|
"fetch": "1.1.0",
|
|
"firebase-admin": "10.0.0",
|
|
"firebase-functions": "3.16.0",
|
|
"lodash": "4.17.21",
|
|
"mailgun-js": "0.22.0",
|
|
"stripe": "8.194.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mailgun-js": "0.22.12",
|
|
"firebase-functions-test": "0.3.3",
|
|
"typescript": "4.5.3"
|
|
},
|
|
"private": true
|
|
}
|