-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.1 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
{
"name": "demo-lambda-vulnerable-app",
"description": "demo-lambda-vulnerable-app is a vulnerable test application configured to run on AWS lambda",
"version": "0.0.1",
"private": true,
"dependencies": {
"@aws-sdk/client-lambda": "^3.13.1",
"aws-sdk": "^2.917.0",
"axios": "^0.21.1",
"basic-ftp": "^4.6.6",
"ldapjs": "^2.2.4",
"lodash": "^4.17.21",
"mongoose": "^5.11.18",
"mysql": "^2.18.1",
"request": "^2.88.2",
"ws": "^5.2.2",
"xmldom": "^0.6.0",
"xpath": "^0.0.32",
"xpath.js": "^1.1.0"
},
"devDependencies": {
"eslint": "^7.22.0",
"jest": "^24.9.0"
},
"scripts": {
"test": "jest",
"build": "sam build",
"deploy": "npm run build && sam deploy",
"start-local": "sam build && sam local start-lambda",
"start-api-local": "sam build && sam local start-api",
"sam-debug-api": "sam build && sam local start-api --debug-port 5858",
"sam-debug-event": "sam build && sam local start-lambda --debug-port 5858"
}
}