-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.41 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "new-service",
"version": "1.0.0",
"description": " knawat microservices project",
"scripts": {
"build": "tsc --build tsconfig.json",
"dev": "ts-node ./node_modules/moleculer/bin/moleculer-runner.js --hot --repl --config moleculer.config.ts services/**/*.service.ts",
"start": "moleculer-runner --config dist/moleculer.config.js",
"cli": "moleculer connect NATS",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint --fix --ext .js,.ts .",
"dc:up": "docker-compose up --build -d",
"dc:logs": "docker-compose logs -f",
"dc:down": "docker-compose down"
},
"keywords": [
"microservices",
"moleculer"
],
"author": "Bashiru",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.36",
"@types/elasticsearch": "^5.0.38",
"@types/jsonwebtoken": "^8.5.4",
"@types/redis": "^2.8.31",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prefer-arrow": "^1.2.2",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"moleculer-repl": "^0.6.2",
"supertest": "^6.1.3",
"ts-jest": "^25.3.0",
"ts-node": "^8.8.1"
},
"dependencies": {
"@elastic/elasticsearch": "^7.13.0",
"@types/jest": "^25.1.4",
"@types/mkdirp": "^1.0.0",
"@types/node": "^13.9.8",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"elasticsearch": "^16.7.2",
"es-builder": "^0.5.0",
"install": "^0.13.0",
"ioredis": "^4.27.6",
"jsonwebtoken": "^8.5.1",
"moleculer": "^0.14.0",
"moleculer-db": "^0.8.14",
"moleculer-db-adapter-mongo": "^0.4.12",
"moleculer-elasticsearch": "^1.1.6",
"moleculer-web": "^0.9.0",
"nats": "^1.3.2",
"npm": "^7.20.3",
"redis": "^3.1.2",
"redlock": "^4.2.0",
"ts-mixer": "^5.2.1",
"typeorm": "^0.2.36",
"typescript": "^3.8.3",
"uuid": "^8.3.2"
},
"engines": {
"node": ">= 10.x.x"
},
"jest": {
"coverageDirectory": "<rootDir>/coverage",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/*.spec.(ts|js)"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
}
}
}