├── .firebaserc ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── firebase.json └── functions ├── .eslintrc.json ├── .mocharc.json ├── package-lock.json ├── package.json ├── rollup.config.js ├── src ├── analysis.function.ts ├── functions-config.ts ├── index.ts └── models │ ├── average.ts │ └── sum.ts ├── tests ├── analisys.spec.ts └── average.spec.ts └── tsconfig.json /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/functions/.eslintrc.json -------------------------------------------------------------------------------- /functions/.mocharc.json: -------------------------------------------------------------------------------- 1 | { 2 | "loader": "ts-node/esm" 3 | } -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/functions/rollup.config.js -------------------------------------------------------------------------------- /functions/src/analysis.function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/functions/src/analysis.function.ts -------------------------------------------------------------------------------- /functions/src/functions-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/functions/src/functions-config.ts -------------------------------------------------------------------------------- /functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/functions/src/index.ts -------------------------------------------------------------------------------- /functions/src/models/average.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/functions/src/models/average.ts -------------------------------------------------------------------------------- /functions/src/models/sum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/functions/src/models/sum.ts -------------------------------------------------------------------------------- /functions/tests/analisys.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/functions/tests/analisys.spec.ts -------------------------------------------------------------------------------- /functions/tests/average.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/functions/tests/average.spec.ts -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robisim74/firebase-functions-typescript-starter/HEAD/functions/tsconfig.json --------------------------------------------------------------------------------