Skip to content

Instantly share code, notes, and snippets.

@rzvdaniel
Last active November 6, 2020 15:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rzvdaniel/591e3543710b2774e3a436dc0747a517 to your computer and use it in GitHub Desktop.
Save rzvdaniel/591e3543710b2774e3a436dc0747a517 to your computer and use it in GitHub Desktop.
Moleculer-Firebase package.json
{
"name": "functions",
"version": "1.0.0",
"description": "My Moleculer-based microservices project",
"scripts": {
"dev": "moleculer-runner --repl --hot services/**/*.service.js",
"start": "moleculer-runner",
"cli": "moleculer connect ",
"ci": "jest --watch",
"test": "jest --coverage",
"serve": "firebase emulators:start --only functions",
"shell": "firebase functions:shell",
"start-fb": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"keywords": [
"microservices",
"moleculer"
],
"author": "",
"devDependencies": {
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"moleculer-repl": "^0.6.2",
"firebase-functions-test": "^0.1.6"
},
"dependencies": {
"moleculer-web": "^0.9.0",
"moleculer": "^0.14.0",
"firebase-admin": "^8.6.0",
"firebase-functions": "^3.3.0"
},
"engines": {
"node": "10"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./services",
"roots": [
"../test"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment