Initial commit.

This commit is contained in:
Richard Feldman
2018-04-27 02:00:51 -04:00
commit 345368cbcc
120 changed files with 30805 additions and 0 deletions

52
server/package.json Normal file
View File

@@ -0,0 +1,52 @@
{
"name": "moleculer-realworld-example-app",
"version": "1.0.0",
"description": "RealWorld example app with Moleculer microservices framework",
"scripts": {
"dev": "moleculer-runner --repl --hot services",
"start": "moleculer-runner",
"deps": "npm-check -u",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint services",
"docker:build": "docker build -t conduit ."
},
"keywords": [
"microservices",
"moleculer",
"realworld"
],
"author": "",
"devDependencies": {
"eslint": "4.11.0",
"jest": "21.2.1",
"jest-cli": "21.2.1",
"moleculer-repl": "^0.3.0",
"npm-check": "5.5.2"
},
"dependencies": {
"bcrypt": "1.0.3",
"jsonwebtoken": "8.1.0",
"lodash": "4.17.4",
"moleculer": "^0.11.0",
"moleculer-db": "0.7.0",
"moleculer-db-adapter-mongo": "0.1.6",
"moleculer-web": "0.6.0-beta7",
"nats": "0.7.24",
"slug": "0.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ice-services/moleculer-realworld-example-app.git"
},
"engines": {
"node": ">= 6.x.x"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./services",
"roots": [
"../test"
]
}
}