forked from kyhsa93/nestjs-rest-cqrs-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.91 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
107
108
{
"name": "nestjs-rest-cqrs-example",
"version": "1.0.0",
"description": "This is sample nestjs project. - link: https://nestjs.com",
"repository": {
"type": "git",
"url": "git+https://github.com/kyhsa93/nestjs-rest-cqrs-example.git"
},
"bugs": {
"url": "https://github.com/kyhsa93/nestjs-rest-cqrs-example/issues"
},
"homepage": "https://github.com/kyhsa93/nestjs-rest-cqrs-example#readme",
"main": "main.ts",
"author": "kyhsa93",
"license": "ISC",
"dependencies": {
"@nestjs/common": "^6.11.11",
"@nestjs/core": "^6.11.11",
"@nestjs/cqrs": "^6.1.0",
"@nestjs/jwt": "^6.1.2",
"@nestjs/passport": "^6.2.0",
"@nestjs/platform-express": "^6.11.11",
"@nestjs/swagger": "^4.7.9",
"@nestjs/typeorm": "^6.3.4",
"@types/passport-jwt": "^3.0.3",
"amqplib": "^0.6.0",
"bcrypt": "^5.0.0",
"compression": "^1.7.4",
"express-rate-limit": "^5.2.3",
"helmet": "^3.23.3",
"ioredis": "^4.19.4",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mysql": "^2.18.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"rxjs": "^6.6.3",
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.2.29",
"uuid": "^3.4.0"
},
"devDependencies": {
"@nestjs/cli": "^7.5.4",
"@nestjs/testing": "^6.11.11",
"@types/amqplib": "^0.5.17",
"@types/bcrypt": "^3.0.0",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.9",
"@types/express-rate-limit": "^3.3.4",
"@types/helmet": "0.0.44",
"@types/ioredis": "^4.17.10",
"@types/jest": "^24.9.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^12.19.11",
"@types/passport-local": "^1.0.33",
"@types/uuid": "^3.4.9",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^5.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"rimraf": "^2.7.1",
"supertest": "^4.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.7"
},
"jest": {
"verbose": false,
"moduleNameMapper": {
"src/(.*)": "<rootDir>/$1"
},
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
},
"husky": {
"hooks": {
"pre-commit": "npm test && lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"npm run prettier",
"npm run lint"
]
},
"scripts": {
"prettier": "prettier --write --config .prettierrc \"./src/**/*.ts\"",
"lint": "eslint --fix src/**.ts src/**/**.ts src/**/**/**.ts src/**/**/**/**.ts",
"test": "jest --clearCache && jest",
"build": "rimraf dist && nest build",
"start": "nodemon"
}
}