-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.71 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
70
71
72
73
74
75
{
"name": "typescript-mongoose",
"version": "1.0.0",
"license": "MIT",
"author": "Vlado Tešanović",
"engines": {
"node": "8.9.1",
"npm": "5.2.0"
},
"repository": {
"url": "https://github.com/vladotesanovic/typescript-mongoose-express.git",
"type": "git"
},
"scripts": {
"start": "nodemon",
"tsc:w": "tsc -w",
"lint": "tslint server/**/*.ts --fix",
"test": "mocha",
"build": "tsc -p ./prod.tsconfig.json && ncp './server/assets' './dist/assets'",
"test:coverage": "nyc mocha"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"server/**/*.ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"exclude": [
"server/**/*.d.ts",
"server/tests/**/*.ts"
],
"reporter": [
"html"
],
"check-coverage": "--lines 50 --per-file",
"all": false,
"sourceMap": false,
"instrument": true
},
"dependencies": {
"body-parser": "^1.18.2",
"debug": "^3.1.0",
"express": "^4.16.2",
"mockgoose-fix": "~7.3.6",
"mongoose": "^4.13.6",
"swagger-jsdoc": "^1.9.7"
},
"devDependencies": {
"@types/body-parser": "1.16.4",
"@types/chai": "^4.1.2",
"@types/chai-http": "^3.0.3",
"@types/dotenv": "^4.0.2",
"@types/express": "^4.0.36",
"@types/mocha": "^2.2.41",
"@types/mongoose": "^4.7.18",
"@types/node": "^8.0.7",
"@types/swagger-jsdoc": "0.0.1",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"source-map-support": "^0.5.3",
"mocha": "^5.0.0",
"dotenv": "^4.0.0",
"ncp": "^2.0.0",
"nodemon": "^1.14.11",
"nyc": "^11.4.1",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.7.1"
}
}