This repository has been archived by the owner on Apr 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.96 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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "bounty-backend",
"version": "0.0.1",
"description": "",
"author": "",
"license": "",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint ./src/**/*.ts ./test/**/*.ts",
"lint:fix": "eslint ./src/**/*.ts ./test/**/*.ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json --runInBand",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"@hapi/joi": "17.1.0",
"@nestjs/common": "6.11.7",
"@nestjs/config": "0.2.4",
"@nestjs/core": "6.11.7",
"@nestjs/jwt": "6.1.1",
"@nestjs/microservices": "6.11.8",
"@nestjs/passport": "6.1.1",
"@nestjs/platform-express": "6.11.7",
"@nestjs/swagger": "4.3.0",
"@nestjs/typeorm": "6.3.1",
"@types/helmet": "0.0.45",
"compression": "1.7.4",
"helmet": "3.21.2",
"mysql": "2.18.1",
"passport": "0.4.1",
"passport-github": "1.1.0",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "6.5.4",
"swagger-ui-express": "4.1.3",
"typeorm": "0.2.22"
},
"devDependencies": {
"@nestjs/cli": "6.14.2",
"@nestjs/schematics": "6.9.4",
"@nestjs/testing": "6.11.7",
"@types/compression": "1.7.0",
"@types/express": "4.17.2",
"@types/hapi__joi": "16.0.11",
"@types/jest": "25.1.3",
"@types/node": "13.7.4",
"@types/passport-github": "1.1.5",
"@types/passport-jwt": "3.0.3",
"@types/passport-local": "1.0.33",
"@types/supertest": "2.0.8",
"@typescript-eslint/eslint-plugin": "2.20.0",
"@typescript-eslint/parser": "2.20.0",
"codecov": "3.6.5",
"eslint": "6.8.0",
"eslint-config-standard-with-typescript": "14.0.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-import-order-alphabetical": "1.0.0",
"eslint-plugin-jest": "23.7.0",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.7",
"supertest": "4.0.2",
"ts-jest": "25.2.1",
"ts-loader": "6.2.1",
"ts-node": "8.6.2",
"tsconfig-paths": "3.9.0",
"typescript": "3.7.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}