-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "kube",
"version": "1.0.0",
"description": "My Moleculer-based microservices project",
"scripts": {
"dev": "moleculer-runner --repl --hot services/**/*.service.js",
"start": "moleculer-runner",
"cli": "moleculer connect NATS",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint services",
"dc:up": "docker-compose up --build -d",
"dc:logs": "docker-compose logs -f",
"dc:down": "docker-compose down"
},
"keywords": [
"microservices",
"moleculer"
],
"author": "",
"devDependencies": {
"eslint": "^8.25.0",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"moleculer-repl": "^0.7.3"
},
"dependencies": {
"nats": "^2.7.1",
"moleculer": "^0.14.26",
"config-mixin": "git+https://github.com/FLYBYME/config-mixin.git",
"cron-mixin": "git+https://github.com/PaaS-Shack/cron-mixin.git",
"db-mixin": "git+https://github.com/PaaS-Shack/db-mixin.git",
"middlewares": "git+https://github.com/PaaS-Shack/middlewares.git",
"membership-mixin": "git+https://github.com/FLYBYME/membership-mixin.git"
},
"engines": {
"node": ">= 16.x.x"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./services",
"roots": [
"../test"
]
}
}