-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
133 lines (133 loc) · 4.85 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "ack-nestjs-boilerplate-kafka",
"version": "4.0.0",
"description": "Ack NestJs Boilerplate Kafka",
"repository": {
"type": "git",
"url": "https://github.com/andrechristikan/ack-nestjs-boilerplate-kafka.git"
},
"author": {
"name": "andrechristikan",
"email": "[email protected]"
},
"private": true,
"license": "MIT",
"scripts": {
"upgrade:package": "ncu -u",
"prebuild": "rimraf dist",
"build": "nest build",
"format": "yarn format:src && yarn format:test",
"format:src": "prettier --write src/**/*.ts",
"format:test": "prettier --write test/**/*.ts",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/src/main",
"lint": "yarn lint:src && yarn lint:test",
"lint:fix": "eslint --ext .ts,.tsx '{src,test}/**/*.ts' --fix --no-error-on-unmatched-pattern",
"lint:src": "eslint --ext .ts,.tsx 'src/**/*.ts' --no-error-on-unmatched-pattern",
"lint:test": "eslint --ext .ts,.tsx 'test/**/*.ts' --no-error-on-unmatched-pattern",
"test": "TZ=UTC jest --config test/jest.json --runInBand --passWithNoTests --forceExit",
"prepare": "husky install",
"deadcode": "ts-prune --project tsconfig.json --skip *.json",
"deadcode:filter": "ts-prune --project tsconfig.json --skip *.json | grep -v '(used in module)'",
"deadcode:count": "ts-prune --project tsconfig.json --skip *.json | grep -v '(used in module)' | wc -l",
"spell": "yarn spell:src && yarn spell:test",
"spell:src": "cspell lint --config cspell.json src/**/*.ts --color --gitignore --no-must-find-files --no-summary --no-progress || true",
"spell:test": "cspell lint --config cspell.json test/**/*.ts --color --gitignore --no-must-find-files --no-summary --no-progress || true",
"kafka:create-topics": "nestjs-command insert:kafka-topics",
"kafka:delete-topics": "nestjs-command remove:kafka-topics",
"seed:setting": "nestjs-command seed:setting",
"seed:apikey": "nestjs-command seed:apikey",
"seed:role": "nestjs-command seed:role",
"rollback:setting": "nestjs-command remove:setting",
"rollback:apikey": "nestjs-command remove:apikey",
"rollback:role": "nestjs-command remove:role",
"seed": "yarn seed:setting && yarn seed:apikey && yarn seed:role",
"rollback": "yarn rollback:setting && yarn rollback:apikey && yarn rollback:role"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.306.0",
"@casl/ability": "^6.4.0",
"@faker-js/faker": "^7.6.0",
"@joi/date": "^2.1.0",
"@nestjs/axios": "^2.0.0",
"@nestjs/common": "^9.4.0",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.4.0",
"@nestjs/jwt": "^10.0.3",
"@nestjs/mongoose": "^9.2.2",
"@nestjs/microservices": "^9.4.0",
"@nestjs/passport": "^9.0.3",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/schedule": "^2.2.1",
"@nestjs/swagger": "^6.3.0",
"@nestjs/terminus": "^9.2.2",
"@nestjs/throttler": "^4.0.0",
"@types/response-time": "^2.3.5",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"crypto-js": "^4.1.1",
"helmet": "^6.0.1",
"joi": "^17.9.1",
"kafkajs": "^2.2.4",
"moment": "^2.29.4",
"mongoose": "^7.0.3",
"morgan": "^1.10.0",
"nest-winston": "^1.9.1",
"nestjs-command": "^3.1.3",
"nestjs-i18n": "^10.2.6",
"passport": "^0.6.0",
"passport-headerapikey": "^1.2.2",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.1.13",
"response-time": "^2.3.2",
"rimraf": "^4.4.1",
"rotating-file-stream": "^3.1.0",
"rxjs": "^7.8.0",
"ua-parser-js": "^1.0.35",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"xlsx": "^0.18.5",
"yargs": "^17.7.1",
"yarn": "^1.22.19"
},
"devDependencies": {
"@nestjs/cli": "^9.3.0",
"@nestjs/schematics": "^9.1.0",
"@nestjs/testing": "^9.4.0",
"@types/bcryptjs": "^2.4.2",
"@types/bytes": "^3.1.1",
"@types/cors": "^2.8.13",
"@types/cron": "^2.0.1",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.192",
"@types/morgan": "^1.9.4",
"@types/ms": "^0.7.31",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.11",
"@types/passport-jwt": "^3.0.8",
"@types/supertest": "^2.0.12",
"@types/ua-parser-js": "^0.7.36",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"cspell": "^6.31.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"ts-prune": "^0.10.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
}
}