-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 909 Bytes
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
{
"name": "secrets-management-tutorial",
"version": "1.0.0",
"description": "Educational repository for secrets management",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"test": "jest --coverage",
"lint": "eslint src/ --ext .ts,.js"
},
"keywords": [
"secrets",
"vault",
"aws",
"azure",
"tutorial"
],
"license": "MIT",
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.500.0",
"node-vault": "^0.10.1",
"@azure/identity": "^4.0.0",
"@azure/keyvault-secrets": "^4.8.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"winston": "^3.11.0",
"pg": "^8.11.3",
"dotenv": "^16.4.1"
},
"devDependencies": {
"eslint": "^8.56.0",
"jest": "^29.7.0",
"supertest": "^6.3.4",
"nodemon": "^3.0.3"
}
}