forked from fortify-presales/DebrickedDemoApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.95 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": "iwaexpress",
"version": "1.0.0",
"description": "IWAExpress (Insecure Web App) Pharmacy Direct an insecure NodeJS/Express web application for use in Micro Focus demonstrations",
"main": "src/app.js",
"private": true,
"scripts": {
"dev": "nodemon src/app.js",
"test": "mocha --reporter spec",
"prod_win": "set NODE_ENV=production&& nodemon src/app.js",
"prod_nix": "NODE_ENV=production&& nodemon src/app.js",
"createVersion": "node -r esm ssc/main.js createVersion --verName \"dev-branch\" --appName \"IWAExpress\"",
"copyVersion": "node -r esm ssc/main.js copyVersion --verName \"example-2\" --appName \"IWAExpress\" --copyFrom \"master\""
},
"author": {
"name": "Kevin Lee <[email protected]>"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"async": "~0.2.8",
"body-parser": "^1.18.2",
"bootstrap": "^4.6.0",
"chai": "^4.3.4",
"child_process": "^1.0.2",
"config": "^3.3.6",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"debug": "^2.2.0",
"dotenv": "^8.5.1",
"ejs": "^2.7.4",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.1",
"express-validator": "^6.10.0",
"fs": "0.0.1-security",
"http-errors": "^1.8.0",
"image-file-resize": "^1.0.3",
"jquery": "^3.6.0",
"jsdom": "^17.0.0",
"mocha": "^8.3.2",
"morgan": "^1.10.0",
"mysql": "^2.13.0",
"pug": "^2.0.0-beta6",
"readline": "^1.3.0",
"request": "^2.88.2",
"restify": "^6.0.1",
"serve-favicon": "^2.3.0",
"socket.io": "~0.9.14",
"swagger-client": "^3.13.2",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"test": "^0.6.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"mocha-junit-reporter": "^2.0.0",
"nodemon": "^1.19.4",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2"
},
"engines": {
"node": "~15.14.x"
}
}