5217270073
* Add the great Zod as a dependency to help us * Tweak eslint * Rewrite a ton of stuff in createContract and placeBet * Clean up error reporting in API * Make sure the UI is enforcing validated limits on lengths * Remove unnecessary Math.abs * Better type on `BetInfo` * Kill `manaLimitPerUser` * Clean up hacky parameters on bet info functions * Validate `closeTime` as a valid timestamp in the future
41 lines
1.5 KiB
JSON
41 lines
1.5 KiB
JSON
{
|
|
"name": "functions",
|
|
"version": "1.0.0",
|
|
"config": {
|
|
"firestore": "dev-mantic-markets.appspot.com"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc -w",
|
|
"shell": "yarn build && firebase functions:shell",
|
|
"start": "yarn shell",
|
|
"deploy": "firebase deploy --only functions",
|
|
"logs": "firebase functions:log",
|
|
"serve": "yarn build && firebase emulators:start --only functions,firestore --import=./firestore_export",
|
|
"db:update-local-from-remote": "yarn db:backup-remote && gsutil rsync -r gs://$npm_package_config_firestore/firestore_export ./firestore_export",
|
|
"db:backup-local": "firebase emulators:export --force ./firestore_export",
|
|
"db:rename-remote-backup-folder": "gsutil mv gs://$npm_package_config_firestore/firestore_export gs://$npm_package_config_firestore/firestore_export_$(date +%d-%m-%Y-%H-%M)",
|
|
"db:backup-remote": "yarn db:rename-remote-backup-folder && gcloud firestore export gs://$npm_package_config_firestore/firestore_export/"
|
|
},
|
|
"main": "lib/functions/src/index.js",
|
|
"dependencies": {
|
|
"@react-query-firebase/firestore": "0.4.2",
|
|
"cors": "2.8.5",
|
|
"fetch": "1.1.0",
|
|
"firebase-admin": "10.0.0",
|
|
"firebase-functions": "3.16.0",
|
|
"lodash": "4.17.21",
|
|
"mailgun-js": "0.22.0",
|
|
"module-alias": "2.2.2",
|
|
"react-query": "3.39.0",
|
|
"stripe": "8.194.0",
|
|
"zod": "3.17.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mailgun-js": "0.22.12",
|
|
"@types/module-alias": "2.0.1",
|
|
"firebase-functions-test": "0.3.3"
|
|
},
|
|
"private": true
|
|
}
|