-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.89 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
57
{
"name": "project-demo",
"version": "1.0.0",
"description": "My Moleculer-based microservices project",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"dev": "ts-node ./node_modules/moleculer/bin/moleculer-runner.js --config moleculer.config.ts --hot --repl services/**/*.service.ts",
"start": "moleculer-runner --config dist/moleculer.config.js",
"test:types": "concurrently npm:prettier npm:lint npm:typecheck",
"typecheck": "tsc --noEmit && echo \"tsc: no typecheck errors\"",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "cross-env TIMING=1 eslint . --ext cjs,mjs,js,jsx,ts,tsx",
"lint:fix": "cross-env TIMING=1 eslint . --ext cjs,mjs,js,jsx,ts,tsx --fix",
"prettier": "prettier . --ignore-unknown --check",
"prettier:fix": "prettier . --ignore-unknown --write",
"dc:up": "docker-compose up --build -d",
"dc:logs": "docker-compose logs -f",
"dc:down": "docker-compose down"
},
"keywords": [
"microservices",
"moleculer"
],
"author": "",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"prettier": "^2.8.0",
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"jest": "^29.3.1",
"moleculer-repl": "^0.7.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"moleculer-web": "^0.10.5",
"moleculer-db": "^0.8.21",
"moleculer-db-adapter-mongo": "^0.4.16",
"nats": "^2.7.1",
"moleculer": "^0.14.27"
},
"engines": {
"node": ">= 16.x.x"
}
}