-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.51 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
{
"name": "dvws-node",
"version": "0.0.1",
"description": "Damn Vulnerable Web Service",
"main": "src/server.js",
"scripts": {
"seed": "node scripts/seed-database.js",
"start": "node src/server.js",
"test": "mocha",
"test:vulnerabilities": "mocha test/vulnerabilities.test.js --timeout 10000",
"test:all": "mocha test/*.test.js --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snoopysecurity/dvws-node"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/snoopysecurity/dvws-node/issues"
},
"homepage": "https://github.com/snoopysecurity/dvws-node#readme",
"dependencies": {
"@graphql-tools/schema": "^10.0.0",
"@xmldom/xmldom": "^0.8.10",
"apollo-server": "^3.13.0",
"apollo-server-express": "^3.13.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-fileupload": "^1.5.0",
"express-jwt-permissions": "^1.3.7",
"graphql": "^16.8.1",
"jsonwebtoken": "^9.0.2",
"libxmljs2": "^0.37.0",
"mongoose": "^7.6.10",
"mysql2": "^3.9.4",
"needle": "^3.3.1",
"node-serialize": "0.0.4",
"pdfkit": "^0.15.0",
"sequelize": "^6.37.3",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.0",
"xml2js": "^0.6.2",
"xmlrpc": "^1.3.2",
"xpath": "0.0.32"
},
"devDependencies": {
"chai": "^4.4.1",
"mocha": "^10.4.0",
"supertest": "^7.0.0"
}
}