forked from lineldcosta/typescript-node-rest-api-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.44 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
{
"name": "blue-app",
"version": "0.0.1",
"description": "Blue App",
"main": "src/bootstrap/index",
"license": "ISC",
"scripts": {
"build": "tsc -p tsconfig.json",
"start-dev": "nodemon",
"start-prod": "yarn build && npx pm2 start pm2.yaml",
"inspect": "nodemon --inspect src/bootstrap/index",
"test": "mocha --require ts-node/register --require ts-jest --require source-map-support/register --watch-extensions ts --forbid-only --full-trace --bail --check-leaks --reporter list --timeout 10000 --recursive tests",
"jest": "jest",
"format": "prettier --write './src/**/**/*.ts'",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"precise-commits": "precise-commits --check-only"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/express": "^4.16.1",
"@types/http-server": "^0.10.0",
"@types/ip": "^1.1.0",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.133",
"@types/node": "^12.0.4",
"@types/pg": "^7.4.14",
"@types/sinon-as-promised": "^4.0.12",
"@types/slonik": "^18.2.0",
"@types/supertest": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"npx": "^10.2.0",
"prettier": "^1.17.1",
"qs": "^6.7.0",
"sinon": "^7.3.2",
"sinon-as-promised": "^4.0.3",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv-safe": "^6.1.0",
"express": "^4.17.1",
"helmet": "^3.18.0",
"http": "^0.0.0",
"module-alias": "^2.2.0",
"morgan": "^1.9.1",
"pg": "^7.11.0",
"pm2": "^3.5.1",
"reflect-metadata": "^0.1.13",
"set-tz": "^0.2.0",
"slonik": "^18.2.2",
"slonik-interceptor-preset": "^1.2.2",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.6",
"typedi": "^0.8.0",
"winston": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn tslint && yarn precise-commits"
}
},
"_moduleAliases": {
"@interfaces/*": "./src/interfaces/*",
"cfg/*": "./src/cfg/*"
}
}