-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.48 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.48 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"version": "0.1.0",
"name": "node-typescript-boilerplate",
"description": "Node.js/TypeScript Boilerplate",
"author": "Dušan Dimitrić <dusan_dimitric@yahoo.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:DusanDimitric/node-typescript-boilerplate.git"
},
"main": "./src/main.js",
"scripts": {
"lint": "tslint --project ./",
"build": "webpack",
"start": "node -r source-map-support/register ./build/app.js",
"watch": "nodemon -r source-map-support/register ./build/app.js",
"test": "nyc -- mocha",
"test:coverage": "npm test && nyc report --reporter=html && open ./coverage/index.html"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/express-winston": "^3.0.1",
"@types/helmet": "0.0.43",
"@types/mocha": "^5.2.6",
"@types/mongodb": "^3.1.25",
"@types/node": "^11.13.4",
"@types/sinon": "^7.0.11",
"@types/supertest": "^2.0.7",
"@types/winston": "^2.4.4",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nodemon": "^1.18.11",
"nyc": "^14.0.0",
"sinon": "^7.3.2",
"supertest": "^4.0.2",
"ts-loader": "^5.3.3",
"ts-node": "^8.1.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.16.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.4.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"body-parser": "^1.18.3",
"class-transformer": "^0.2.1",
"class-validator": "^0.9.1",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-winston": "^3.1.0",
"helmet": "^3.18.0",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.3.2",
"mongodb": "^3.2.3",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.12",
"winston": "^3.2.1"
},
"nyc": {
"all": true,
"clean": true,
"check-coverage": true,
"per-file": false,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 0,
"include": [
"src/**/*"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register",
"reflect-metadata/Reflect"
]
},
"mocha": {
"spec": "./test/**/*.test.ts",
"exit": true,
"diff": true,
"extension": [
"ts"
],
"package": "./package.json",
"timeout": 5000,
"reporter": "spec",
"ui": "bdd"
}
}