-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "@hoolicorp/shiftleft-ts-example",
"version": "1.0.0",
"description": "Vulnerable app built with TypeScript, expressJS and mongoDB",
"main": "index.js",
"scripts": {
"start": "npm run init-db && npm run server",
"init-db": "node db-init.js",
"server": "PORT=8089 node index.js",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"lint": "tslint --project ./ -t verbose"
},
"author": "Chaitanya Kumar Kamatham <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-session": "^1.17.0",
"form-data": "^2.5.1",
"mongodb": "^3.3.3",
"pug": "^2.0.4"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/mongodb": "^3.5.20",
"@types/node": "^7.10.7",
"tslint": "^5.18.0",
"tslint-microsoft-contrib": "^6.0.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.8.3"
}
}