This repository was archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.86 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.86 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@egomobile/microservices",
"version": "2.0.0",
"description": "Shared library for microservices, written for Node.js",
"author": "Next.e.GO Mobile SE, Aachen, Germany",
"license": "LGPL-3.0",
"main": "lib/index.js",
"private": false,
"files": [
"CHANGELOG.md",
"index.d.ts",
"lib",
"!lib/**/*.map",
"README.md"
],
"bugs": {
"url": "https://github.com/egomobile/node-microservices/issues"
},
"homepage": "https://github.com/egomobile/node-microservices#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/egomobile/node-microservices.git"
},
"keywords": [
"microservice",
"nats",
"kubernetes",
"docker",
"library",
"module",
"helper",
"node",
"typescript",
"bcrypt",
"jwt",
"json web token",
"azure",
"authentication",
"oauth2",
"active directory",
"express",
"utils",
"application insights",
"passport",
"cloud",
"mongodb",
"database",
"mailing",
"api",
"rest"
],
"dependencies": {
"@egomobile/types": "^2.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.4",
"@types/passport": "^1.0.7",
"@types/passport-azure-ad": "^4.3.2",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"dotenv": "^10.0.0",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "5.3.0",
"node-nats-streaming": "^0.3.2",
"winston": "^3.3.3",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@azure/storage-blob": "^12.7.0",
"@egomobile/tsconfig": "^5.0.0",
"@types/lodash": "^4.14.172",
"@types/node": "^12.20.19",
"@types/nodemailer": "^6.4.4",
"@types/redis": "^2.8.31",
"del-cli": "^3.0.1",
"eslint": "^7.32.0",
"eslint-config-ego": "^0.15.0",
"tslint": "^6.1.3",
"typedoc": "^0.20.37",
"typescript": "4.2.4"
},
"peerDependencies": {
"@azure/storage-blob": "^12.6.0",
"applicationinsights": "^2.0.0",
"express": "^4.17.1",
"mongodb": "^5.3.0",
"nodemailer": "^6.6.3",
"lodash": "^4.17.21",
"passport": "^0.6.0",
"passport-azure-ad": "^4.3.2",
"redis": "^3.1.2"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "del ./lib && tsc",
"deploy": "npm install && npm run build && npm publish",
"docs:generate": "del ./docs && typedoc --out ./docs ./src",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts src"
}
}