mirror of
https://github.com/rowyio/rowy.git
synced 2026-02-24 04:01:17 +01:00
35 lines
889 B
JSON
35 lines
889 B
JSON
{
|
|
"name": "ft-functions-builder",
|
|
"description": "Manages the build and deployment of Firetable cloud functions",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "yarn build && node build",
|
|
"build": "rm -rf build && tsc --project ./ && cp -r functions build && cp -r sparksLib build",
|
|
"deploy": "./deploy.sh"
|
|
},
|
|
"engines": {
|
|
"node": "14"
|
|
},
|
|
"dependencies": {
|
|
"body-parser": "^1.19.0",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.17.1",
|
|
"firebase-admin": "^9.2.0",
|
|
"firebase-functions": "^3.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.11",
|
|
"@types/node": "^14.14.33",
|
|
"firebase-tools": "^8.7.0",
|
|
"husky": "^4.2.5",
|
|
"js-beautify": "^1.13.0",
|
|
"prettier": "^2.1.1",
|
|
"pretty-quick": "^3.0.0",
|
|
"ts-node": "^9.1.1",
|
|
"tslint": "^6.1.0",
|
|
"typescript": "^4.2.3"
|
|
}
|
|
}
|