-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "moleculer-express",
"version": "1.0.0",
"description": "Service with MoleculerJS and ExpressJS",
"scripts": {
"dev": "moleculer-runner --repl --env --hot",
"start": "moleculer-runner --env",
"cli": "moleculer connect ",
"ci": "jest --watch",
"test": "jest --coverage"
},
"keywords": [
"microservices",
"moleculer"
],
"author": {
"name": "Miftahul Arifin",
"email": "[email protected]",
"url": "https://github.com/arifintahu"
},
"devDependencies": {
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"moleculer-repl": "^0.6.4"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-busboy": "^8.0.0",
"express-useragent": "^1.0.15",
"moleculer": "^0.14.13",
"named-routes": "^2.0.7",
"pg": "^8.6.0",
"pg-hstore": "^2.3.3",
"pg-native": "^3.0.0",
"sequelize": "^6.6.2"
},
"engines": {
"node": ">= 10.x.x"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./services",
"roots": [
"../test"
]
}
}