-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 988 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
41
42
43
{
"name": "demo",
"version": "1.0.0",
"description": "My Moleculer-based microservices project",
"scripts": {
"dev": "moleculer-runner --repl --hot services/**/*.service.js",
"start": "moleculer-runner services/**/*.service.js",
"cli": "moleculer connect ",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint services"
},
"keywords": [
"microservices",
"moleculer"
],
"author": "",
"devDependencies": {
"eslint": "^7.32.0",
"jest": "^27.1.0",
"jest-cli": "^27.1.0",
"moleculer-repl": "^0.6.6"
},
"dependencies": {
"dynamodb": "^1.3.0",
"joi": "^17.4.2",
"moleculer": "^0.14.18",
"moleculer-db": "^0.8.15",
"moleculer-db-adapter-dynamodb": "^2.0.0",
"moleculer-web": "^0.10.2"
},
"engines": {
"node": ">= 12.x.x"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./services",
"roots": [
"../test"
]
}
}