-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
53 lines (52 loc) · 1.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"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"
]
}
}