Files
rowy/cloud_functions/functions/package.json
2020-03-27 10:11:33 +08:00

36 lines
963 B
JSON

{
"name": "functions",
"scripts": {
"fetchConfig": "ts-node fetchConfig.ts",
"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",
"deploy": "firebase deploy --token \"$FIREBASE_TOKEN\" --project antler-vc --only",
"logs": "firebase functions:log"
},
"engines": {
"node": "10"
},
"main": "lib/src/index.js",
"dependencies": {
"@types/algoliasearch": "^3.34.5",
"@types/json2csv": "^4.5.0",
"@types/lodash": "^4.14.149",
"algoliasearch": "^3.35.1",
"firebase-admin": "^8.9.2",
"firebase-functions": "^3.3.0",
"json2csv": "^4.5.4",
"lodash": "^4.17.15"
},
"devDependencies": {
"firebase-tools": "^7.16.1",
"husky": "^3.0.9",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"typescript": "^3.2.2"
},
"private": true
}