-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.84 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
{
"name": "bamm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"build": "tsc && cover",
"postinstall": "tsc",
"test": "mocha --opts mocha.opts && rm -rf test",
"test:dev": "mocha --opts mocha.opts --watch",
"cover": "nyc npm run test"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"csurf": "^1.9.0",
"express-jwt": "^5.3.0",
"express-session": "^1.15.6",
"helmet": "^3.9.0",
"http-errors": "^1.6.2",
"http-status-codes": "^1.3.0",
"https": "^1.0.0",
"inversify": "^4.5.0",
"inversify-express-utils": "^5.2.1",
"jsonwebtoken": "^8.1.0",
"mongoose": "^4.13.0",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.10",
"session-file-store": "^1.1.2",
"uuid": "^3.1.0",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/bcrypt": "^1.0.0",
"@types/body-parser": "^1.16.7",
"@types/chai": "^4.0.4",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.1",
"@types/csurf": "^1.9.35",
"@types/express": "^4.0.39",
"@types/helmet": "0.0.37",
"@types/http-errors": "^1.6.1",
"@types/http-status-codes": "^1.0.29",
"@types/jsonwebtoken": "^7.2.3",
"@types/mocha": "^2.2.44",
"@types/mongodb": "^2.2.15",
"@types/mongoose": "^4.7.24",
"@types/morgan": "^1.7.35",
"@types/node": "^8.0.47",
"@types/passport": "^0.3.5",
"@types/passport-local": "^1.0.32",
"@types/uuid": "^3.4.3",
"chai": "^4.1.2",
"jasmine": "^2.8.0",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"sinon": "^4.1.1",
"sinon-chai": "^2.14.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
}
}