forked from Ecostack/intro-websecurity-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.93 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.93 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
{
"name": "intro-websecurity-workshop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "glob \"./src/**/*.test.ts\" -c \"tsx --test\"",
"test-a01": "glob \"./src/a01-broken-access-control/*.test.ts\" -c \"tsx --test\"",
"test-a01win": "glob -c \"tsx --test\" \"./src/a01-broken-access-control/*.test.ts\"",
"test-a02": "glob \"./src/a02-cryptographic-failures/*.test.ts\" -c \"tsx --test\"",
"test-a03": "glob \"./src/a03-injection/*.test.ts\" -c \"tsx --test\"",
"test-a04": "glob \"./src/a04-insecure-design/*.test.ts\" -c \"tsx --test\"",
"test-a05": "glob \"./src/a05-security-misconfiguration/*.test.ts\" -c \"tsx --test\"",
"test-a06": "glob \"./src/a06-vulnerable-and-outdated-components/*.test.ts\" -c \"tsx --test\"",
"test-a07": "glob \"./src/a07-identification-and-authentication-failures/*.test.ts\" -c \"tsx --test\"",
"test-a08": "glob \"./src/a08-software-and-data-integrity-failures/*.test.ts\" -c \"tsx --test\"",
"test-a09": "glob \"./src/a09-security-logging-and-monitoring-failures/*.test.ts\" -c \"tsx --test\"",
"test-a10": "glob \"./src/a10-server-side-request-forgery/*.test.ts\" -c \"tsx --test\"",
"test-solution": "glob \"./DO_NOT_OPEN-CONTAINS_SOLUTIONS/**/*.test.ts\" -c \"tsx --test\""
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/esprima": "^4.0.6",
"@types/express": "^4.17.21",
"@types/node": "^20.12.5",
"@types/supertest": "^6.0.2",
"glob": "^10.3.12",
"supertest": "^6.3.4",
"tsx": "^4.7.2",
"typescript": "^5.4.4"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"esprima": "^4.0.1",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"pug": "^3.0.2",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"systeminformation": "4.31.0"
}
}