forked from nutes-uepb/template-base-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.4 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "template-base-ts",
"version": "1.0.0",
"description": "Base project for implementation of REST API in typescript",
"main": "dist/server.js",
"scripts": {
"build": "gulp build",
"build:doc": "typedoc --options typedoc.json",
"start": "node dist/server.js",
"start:dev": "gulp dev",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"test": "nyc --clean --all --reporter=text mocha --opts test/mocha.opts test/**/*.spec.ts",
"test:integration": "mocha --opts test/mocha.opts test/integration/**/*.spec.ts",
"test:unit": "mocha --opts test/mocha.opts test/unit/**/*.spec.ts",
"test:cov": "nyc --clean --all --reporter=html --reporter=text mocha --opts test/mocha.opts test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"microservice",
"nodejs",
"typescipt",
"express"
],
"author": "NUTES/UEPB",
"license": "MIT",
"nyc": {
"include": [
"**/*.tsx",
"**/*.ts"
],
"exclude": [
"**/*.d.ts",
"test/*",
"config/*"
],
"extension": [
".ts",
".tsx"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"dependencies": {
"amqp-ts": "^1.4.0",
"body-parser": "^1.18.3",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"greenlock-express": "^2.4.9",
"helmet": "^3.14.0",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.2.0",
"mongoose": "^5.3.7",
"morgan": "^1.9.1",
"query-strings-parser": "^1.0.0",
"redirect-https": "^1.3.0",
"reflect-metadata": "^0.1.12",
"swagger-ui-express": "^4.0.1",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.4.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.6",
"@types/express": "^4.16.0",
"@types/helmet": "^0.0.42",
"@types/mocha": "^5.2.5",
"@types/mongoose": "^5.2.20",
"@types/morgan": "^1.7.35",
"@types/swagger-ui-express": "^3.0.0",
"@types/yamljs": "^0.2.30",
"chai": "^4.2.0",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^5.0.0-alpha.3",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.1.0",
"sinon-mongoose": "^2.2.1",
"supertest": "^3.3.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.3"
}
}