-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.18 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.18 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
{
"name": "devstack-core-nodejs-reference",
"version": "1.0.0",
"description": "Node.js reference implementation for DevStack Core infrastructure integration",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.js"
},
"keywords": [
"vault",
"hashicorp",
"postgresql",
"mysql",
"mongodb",
"redis",
"rabbitmq",
"microservices",
"reference-implementation"
],
"author": "DevStack Core Team",
"license": "MIT",
"dependencies": {
"amqplib": "^0.10.3",
"cors": "^2.8.6",
"express": "^5.2.0",
"express-rate-limit": "^8.2.2",
"helmet": "^8.1.0",
"mongodb": "^7.1.0",
"mysql2": "^3.16.3",
"node-vault": "^0.10.10",
"pg": "^8.18.0",
"prom-client": "^15.1.0",
"redis": "^5.10.0",
"uuid": "^9.0.1",
"winston": "^3.19.0"
},
"devDependencies": {
"eslint": "^10.0.3",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"supertest": "^7.2.2"
},
"overrides": {
"js-yaml": "^4.1.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}