forked from tharles-freire-heyupcharly/vuln-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 945 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 945 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
{
"name": "vulnerable-node-app",
"version": "1.0.0",
"description": "A vulnerable Node.js application for SAST testing",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Warning: No tests specified. This is a vulnerable app for testing purposes.\" && exit 0",
"test:integration": "echo \"Integration tests would run here\"",
"security:scan": "echo \"Security scanning with various tools\"",
"docker:build": "docker build -t vulnapp67 .",
"docker:run": "docker run -p 3000:3000 vulnapp67"
},
"dependencies": {
"express": "^4.17.1",
"body-parser": "^1.19.0",
"lodash": "4.17.19",
"moment": "2.18.1",
"mongoose": "5.4.10",
"request": "2.88.0",
"serve-static": "1.7.1",
"axios": "0.18.0",
"handlebars": "4.0.11",
"jquery": "3.4.1",
"minimist": "0.0.8",
"morgan": "1.9.0",
"debug": "2.6.8",
"ms": "2.0.0",
"marked": "0.3.5"
}
}