-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.65 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
{
"name": "typescriptboilerplate",
"version": "0.0.0",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "",
"keywords": [],
"scripts": {
"autoMigrate": "ts-node ./node_modules/.bin/typeorm migration:generate -n PostRefactoring",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"coverage": "jest --collectCoverageFrom=src/** --coverage test",
"dev": "nodemon",
"doc": "typedoc --theme ./node_modules/typedoc-twilio-theme/bin --out docs",
"fix": "gts fix",
"posttest": "npm run check",
"prepare": "npm run compile",
"pretest": "npm run compile",
"prod": "forever ./build/src/index.js",
"start": "npm run clean && npm run compile && npm run prod",
"test": "jest test"
},
"dependencies": {
"@hapi/joi": "^15.1.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-transformer-validator": "^0.7.1",
"class-validator": "^0.10.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"helmet": "^3.20.0",
"inversify": "^5.0.1",
"inversify-binding-decorators": "^4.0.0",
"inversify-devtools": "^1.0.0",
"inversify-express-utils": "^6.3.2",
"inversify-logger-middleware": "^3.1.0",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"mysql": "^2.17.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pg": "^7.12.1",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.7.7",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.0.7",
"typeorm": "0.2.18",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.0",
"@types/compression": "1.0.0",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/hapi__joi": "^15.0.3",
"@types/helmet": "0.0.43",
"@types/jest": "^24.0.17",
"@types/morgan": "^1.7.36",
"@types/multer": "^1.3.8",
"@types/node": "^12.7.1",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.1",
"@types/swagger-jsdoc": "^3.0.1",
"@types/swagger-ui-express": "^3.0.1",
"@types/winston": "^2.4.4",
"gts": "^1.1.0",
"husky": "^3.0.3",
"inversify-dts": "^3.0.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"superagent": "^5.1.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typedoc": "^0.15.0",
"typedoc-plantuml": "^1.4.1",
"typedoc-plugin-mermaid": "^1.1.0",
"typedoc-twilio-theme": "^1.0.0",
"typescript": "3.5.3"
}
}