mirror of
https://github.com/rowyio/rowy.git
synced 2026-02-24 04:01:17 +01:00
35 lines
973 B
JSON
35 lines
973 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": "echo 'n\n' | firebase deploy --token \"$FIREBASE_TOKEN\" --project \"$PROJECT_ID\" --only functions --interactive",
|
|
"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": {
|
|
"husky": "^3.0.9",
|
|
"ts-node": "^8.6.2",
|
|
"tslint": "^6.1.0",
|
|
"typescript": "^3.2.2"
|
|
},
|
|
"private": true
|
|
}
|