-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathpackage.json
74 lines (74 loc) · 2.01 KB
/
package.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@mike-works/web-security-fundamentals",
"version": "0.0.0-development",
"private": true,
"scripts": {
"start": "./node_modules/.bin/nodemon -e js --watch server index.js",
"test": "echo 'no tests'",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"dependencies": {
"bcrypt": "3.0.8",
"body-parser": "1.20.3",
"chalk": "2.4.2",
"commander": "2.20.3",
"connect-flash": "0.1.1",
"connect-sqlite3": "0.9.15",
"cookie-parser": "1.4.7",
"cookie-session": "2.1.0",
"cors": "2.8.5",
"csurf": "1.11.0",
"debug": "4.4.0",
"dist-exiftool": "10.53.0",
"ejs": "2.7.4",
"ejs-mate": "3.0.0",
"express": "4.21.2",
"express-session": "1.18.1",
"faker": "4.1.0",
"helmet": "3.23.3",
"helmet-csp": "2.10.0",
"lodash": "4.17.21",
"morgan": "1.10.0",
"node-exiftool": "2.3.0",
"nodemon": "1.19.4",
"sequelize": "5.22.5",
"serve-favicon": "2.5.0",
"sqlite3": "4.2.0"
},
"description": "Mike Works Web Security course",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mike-works/web-security-fundamentals.git"
},
"keywords": [
"web-security",
"infosec",
"xss",
"cors",
"pentest",
"clickjack",
"workshop",
"javascript"
],
"author": "Mike North <[email protected]> (https://mike.works)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mike-works/web-security-fundamentals/issues"
},
"homepage": "https://github.com/mike-works/web-security-fundamentals#readme",
"devDependencies": {
"@mike-works/js-lib-renovate-config": "2.0.0",
"@mike-works/workshop-semantic-release-config": "1.0.0",
"@types/lodash": "4.17.14",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-preset-stage-3": "6.24.1",
"semantic-release": "15.14.0",
"travis-deploy-once": "5.0.11"
},
"release": {
"extends": "@mike-works/workshop-semantic-release-config"
}
}