generated from diyorbekrustamjonov/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.13 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
{
"name": "nestsjs-starter-kit",
"version": "1.0.2",
"description": "Nest.js starter kit",
"repository": {
"type": "git",
"url": "https://github.com/diyorbekrustamjonov/nestjs-starter-kit.git"
},
"author": {
"name": "Diyorbek Rustamjonov",
"email": "[email protected]",
"url": "https://diyorbek.ru"
},
"private": true,
"license": "MIT",
"scripts": {
"start": "nest start index.js",
"start:build": "del-cli -rf build && tsc && tsc-alias",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node build/index.js",
"prestart:prod": "npm run build",
"seed": "node build/core/shared/seeders/seeder.js",
"seed:refresh": "node build/core/shared/seeders/seeder.js --refresh",
"lint": "npm run lint:eslint && npm run lint:tslint && npm run lint:prettier",
"lint:eslint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:prettier": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"coverage": "nyc npm run test"
},
"engines": {
"node": "^16.19.0",
"npm": "^8.19.3",
"pnpm": "^8.14.0"
},
"keywords": [
"nestjs",
"starter",
"kit"
],
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --write"
]
},
"dependencies": {
"@faker-js/faker": "^8.3.1",
"@nestjs/common": "^10.3.0",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.2.10",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mongoose": "^10.0.2",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.3.0",
"@nestjs/swagger": "^7.1.17",
"@nestjs/throttler": "^5.1.1",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"minio": "^7.1.3",
"mongoose": "^8.0.3",
"multer": "^1.4.5-lts.1",
"nestjs-minio": "^2.5.4",
"nestjs-seeder": "^0.3.2",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"sharp": "^0.33.1",
"tslib": "^2.6.2",
"tslog": "^4.9.2"
},
"devDependencies": {
"@nestjs/cli": "^10.2.1",
"@nestjs/schematics": "^10.0.3",
"@nestjs/testing": "^10.2.0",
"@types/convict": "^6.1.6",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.7",
"@types/source-map-support": "^0.5.10",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"convict": "^6.2.4",
"del-cli": "^5.1.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"mongoose-slug-updater": "^3.3.0",
"prettier": "^3.1.1",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}