-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "inversify-express-example",
"version": "1.0.0",
"description": "Examples for using inversify with expressjs",
"author": "lholznagel",
"license": "MIT",
"scripts": {
"test": "nyc --clean --all --require ts-node/register --require reflect-metadata/Reflect --extension .ts -- mocha --exit --timeout 5000",
"test:all": "npm test **/*.spec.ts",
"update": "updates --update --minor && npm install",
"postupdate": "git diff-files --quiet package-lock.json || npm test"
},
"dependencies": {
"body-parser": "1.19.0",
"express": "4.17.1",
"helmet": "3.20.1",
"inversify": "5.0.1",
"inversify-binding-decorators": "4.0.0",
"inversify-express-utils": "6.3.2",
"inversify-logger-middleware": "3.1.0",
"mongodb": "3.3.2",
"morgan": "1.9.1",
"pg": "7.13.0",
"reflect-metadata": "0.1.13",
"typeorm": "0.2.19"
},
"devDependencies": {
"@types/bluebird": "3.5.27",
"@types/body-parser": "1.19.0",
"@types/chai": "4.2.1",
"@types/express": "4.17.1",
"@types/helmet": "0.0.45",
"@types/mocha": "7.0.0",
"@types/mongodb": "3.3.1",
"@types/morgan": "1.9.0",
"chai": "4.2.0",
"mocha": "6.2.0",
"nyc": "14.1.1",
"ts-node": "8.4.0",
"typescript": "3.5.3",
"updates": "^9.0.0"
},
"nyc": {
"exclude": [
"**/*.spec.ts"
]
}
}