Last active
November 6, 2020 15:38
-
-
Save rzvdaniel/591e3543710b2774e3a436dc0747a517 to your computer and use it in GitHub Desktop.
Moleculer-Firebase package.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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