forked from siridho/Base-API-MoleculerJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 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
54
55
56
{
"name": "base-moleculer",
"version": "1.0.0",
"description": "My Moleculer microservices project",
"scripts": {
"dev": "moleculer-runner --repl --hot services",
"server": "nodemon ./node_modules/.bin/moleculer-runner --repl --hot services",
"cli": "moleculer connect NATS",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint services",
"dc:up": "docker-compose up --build -d",
"dc:down": "docker-compose down"
},
"keywords": [
"microservices",
"moleculer"
],
"author": "",
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"moleculer-repl": "^0.5.3",
"nodemon": "^1.18.10",
"prettier": "^1.16.4"
},
"dependencies": {
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"moleculer": "^0.13.0",
"moleculer-db": "^0.7.7",
"moleculer-web": "^0.8.5",
"multiparty": "^4.2.1",
"nats": "^1.0.1",
"pg": "^7.8.0",
"sequelize": "^4.42.0"
},
"engines": {
"node": ">= 8.x.x"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./services",
"roots": [
"../test"
]
}
}