forked from Yoavmartin/JS-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (64 loc) · 1.89 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
{
"name": "owasp-nodejs-goat",
"private": true,
"version": "1.3.0",
"description": "A tool to learn OWASP Top 10 for node.js developers",
"main": "server.js",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.19.0",
"consolidate": "0.16.0",
"csurf": "1.11.0",
"dont-sniff-mimetype": "1.1.0",
"express": "4.17.1",
"express-session": "1.17.1",
"forever": "3.0.4",
"helmet": "4.5.0",
"marked": "2.0.3",
"mongodb": "2.2.36",
"needle": "2.6.0",
"node-esapi": "0.0.1",
"serve-favicon": "2.5.0",
"swig": "1.4.2",
"underscore": "1.13.1"
},
"comments": {
"//": "a9 insecure components"
},
"scripts": {
"start": "node server.js",
"dev": "cross-env PORT=5000 nodemon",
"test:e2e": "cross-env NODE_ENV=test cypress open",
"test:ci": "cross-env NODE_ENV=test cypress run",
"test": "node node_modules/grunt-cli/bin/grunt test",
"db:seed": "cross-env NODE_ENV=test grunt db-reset",
"precommit": "grunt precommit",
"docker-mongo": "docker run -p 27017:27017 --name mongo mongo:latest",
"start-infra": "docker-compose up",
"stop-infra": "docker-compose down",
"cy:verify": "cypress verify"
},
"devDependencies": {
"async": "3.2.2",
"cross-env": "7.0.3",
"cypress": "3.3.1",
"grunt": "1.4.0",
"grunt-cli": "1.4.2",
"grunt-concurrent": "3.0.0",
"grunt-contrib-jshint": "3.0.0",
"grunt-contrib-watch": "1.1.0",
"grunt-env": "latest",
"grunt-if": "https://github.com/binarymist/grunt-if/tarball/master",
"grunt-jsbeautifier": "0.2.13",
"grunt-mocha-test": "0.13.3",
"grunt-npm-install": "0.3.1",
"grunt-retire": "1.0.9",
"mocha": "8.3.2",
"nodemon": "2.0.7",
"selenium-webdriver": "3.6.0",
"should": "13.2.3",
"zaproxy": "1.0.1"
},
"repository": "https://github.com/OWASP/NodejsGoat",
"license": "Apache 2.0"
}