mirror of
https://github.com/tappollo/booster.git
synced 2026-01-13 07:30:26 +08:00
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "@mercy/functions",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"workspaces": {
|
|
"nohoist": [
|
|
"**"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "rm -rf lib && tsc",
|
|
"lint": "eslint --ext js,ts,tsx src",
|
|
"ci": "yarn lint && yarn build",
|
|
"serve": "yarn build && firebase serve --only functions",
|
|
"shell": "yarn build && firebase functions:shell"
|
|
},
|
|
"main": "lib/index.js",
|
|
"dependencies": {
|
|
"@slack/webhook": "^5.0.3",
|
|
"date-fns": "^2.12.0",
|
|
"firebase-admin": "^8.11.0",
|
|
"firebase-functions": "^3.6.1",
|
|
"md5": "^2.2.1",
|
|
"node-fetch": "^2.6.0",
|
|
"sharp": "^0.25.2",
|
|
"stripe": "^8.48.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^25.1.3",
|
|
"@types/md5": "^2.2.0",
|
|
"@types/node": "^13.13.4",
|
|
"@types/node-fetch": "^2.5.7",
|
|
"@types/sharp": "^0.25.0",
|
|
"@typescript-eslint/eslint-plugin": "^2.30.0",
|
|
"@typescript-eslint/parser": "^2.30.0",
|
|
"eslint": "^6.5.1",
|
|
"eslint-config-typescript": "^3.0.0",
|
|
"jest": "^25.5.3",
|
|
"ts-jest": "^25.4.0",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"engines": {
|
|
"node": "10"
|
|
}
|
|
}
|