-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "moleculer-examples-conduit",
"version": "3.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": "^6.8.0",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"moleculer-repl": "^0.6.2",
"npm-check": "5.9.0"
},
"dependencies": {
"bcryptjs": "2.4.3",
"ioredis": "^4.14.1",
"jsonwebtoken": "8.5.1",
"lodash": "^4.17.15",
"moleculer": "0.14.0",
"moleculer-db": "0.8.5",
"moleculer-db-adapter-mongo": "^0.4.7",
"moleculer-web": "0.9.0",
"redlock": "^4.1.0",
"slug": "^2.1.1"
},
"engines": {
"node": ">= 8.x.x"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./services",
"roots": [
"../test"
]
}
}