Files
rowy/cloud_functions/functions/package.json

56 lines
1.5 KiB
JSON
Raw Normal View History

2019-10-16 11:25:02 +11:00
{
"name": "functions",
"scripts": {
2020-06-29 16:27:29 +08:00
"updateStatus": "ts-node updateDeployStatus.ts",
"generateConfig": "ts-node src/generateConfig.ts",
2019-10-16 11:25:02 +11:00
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"serve": "npm run build && firebase serve --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deployFT": "echo 'n\n' | firebase deploy --interactive",
2019-10-16 11:25:02 +11:00
"logs": "firebase functions:log"
},
"engines": {
2020-03-26 16:00:36 +08:00
"node": "10"
2019-10-16 11:25:02 +11:00
},
2020-06-29 16:27:29 +08:00
"main": "lib/index.js",
2019-10-16 11:25:02 +11:00
"dependencies": {
"@google-cloud/cloudbuild": "^1.5.0",
2020-04-27 17:59:05 +08:00
"@google-cloud/firestore": "^3.7.5",
2020-08-05 12:35:43 +10:00
"@google-cloud/storage": "^5.1.2",
2020-09-22 11:59:41 +10:00
"@sendgrid/mail": "^7.2.6",
2020-08-30 00:38:28 +10:00
"@slack/web-api": "^5.11.0",
2020-11-11 22:17:29 +08:00
"algoliasearch": "^4.6.0",
2020-03-10 08:33:50 +08:00
"firebase-admin": "^8.9.2",
2019-11-10 12:00:46 +11:00
"firebase-functions": "^3.3.0",
2020-08-05 12:35:43 +10:00
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.0",
"lodash": "^4.17.19",
2020-08-20 22:43:44 +10:00
"sharp": "^0.25.4"
2019-10-16 11:25:02 +11:00
},
"devDependencies": {
2020-08-05 12:35:43 +10:00
"@types/algoliasearch": "^3.34.10",
"@types/imagemin": "^7.0.0",
"@types/imagemin-mozjpeg": "^8.0.0",
"@types/imagemin-pngquant": "^7.0.0",
"@types/json2csv": "^5.0.1",
"@types/lodash": "^4.14.158",
"@types/sharp": "^0.25.1",
2020-08-19 19:32:08 +10:00
"firebase-tools": "^8.7.0",
2020-09-03 10:52:18 +10:00
"husky": "^4.2.5",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0",
2020-03-10 08:33:50 +08:00
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
2020-03-10 08:33:50 +08:00
"typescript": "^3.2.2"
2019-10-16 11:25:02 +11:00
},
2020-09-03 10:52:18 +10:00
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
2019-10-16 11:25:02 +11:00
"private": true
}