-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 887 Bytes
/
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
{
"name": "chartify-service",
"version": "1.0.0",
"description": "My Moleculer microservices project",
"scripts": {
"dev": "moleculer-runner --repl --hot services",
"start": "moleculer-runner --repl --hot services",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint services"
},
"keywords": [
"microservices",
"moleculer"
],
"author": "",
"devDependencies": {
"eslint": "^4.18.2",
"jest": "^22.4.2",
"jest-cli": "^22.4.2",
"moleculer-repl": "^0.4.0"
},
"dependencies": {
"moleculer": "^0.12.0",
"moleculer-db": "^0.7.1",
"moleculer-db-adapter-mongo": "^0.1.7",
"moleculer-web": "^0.6.0"
},
"engines": {
"node": ">= 6.x.x"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./services",
"roots": [
"../test"
]
}
}