-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
108 lines (108 loc) · 3.41 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-v10-webpack-boilerplate",
"version": "2.5.1",
"description": "Boilerplate for NestJS v10 with Webpack, Pnpm, Fastify, Swagger, Pino Logger, Airbnb JavaScript Guide, Google JSON Style, ESLint, Prettier, Editorconfig, Husky, Lint-Staged, Commitlint, Axios, Docker, Alias Path, Error Handling and Clustering",
"keywords": [
"airbnb-eslint",
"fastify",
"nestjs",
"nestjs-boilerplate",
"pino",
"pnpm",
"swagger",
"typescript",
"webpack"
],
"bugs": {
"url": "https://github.com/kenso312/nestjs-v10-webpack-boilerplate/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kenso312/nestjs-v10-webpack-boilerplate.git"
},
"license": "MIT",
"author": "Ken So",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build --builder webpack",
"dev": "pnpm start:dev",
"preinstall": "npx only-allow pnpm",
"postinstall": "husky install",
"lint": "eslint . --fix && sort-package-json",
"prod": "pnpm start:prod",
"repl": "pnpm start:repl",
"start": "cross-env NODE_ENV=production node dist/main",
"start:dev": "nest start --watch",
"start:prod": "pnpm build && pnpm start",
"start:repl": "node --watch -r @swc-node/register ./src/utils/repl",
"swagger": "node -r @swc-node/register ./src/utils/swagger",
"test": "pnpm test:unit && pnpm test:e2e",
"test:e2e": "jest --config ./test/jest.e2e.config.ts",
"test:unit": "jest"
},
"dependencies": {
"@nestjs/common": "^10.3.0",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.3.0",
"@nestjs/platform-fastify": "^10.3.0",
"@nestjs/swagger": "^7.1.17",
"@swc/jest": "^0.2.29",
"axios": "^1.6.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cross-env": "^7.0.3",
"fastify": "^4.25.2",
"joi": "^17.11.0",
"nestjs-pino": "^3.5.0",
"pino": "^8.17.2",
"pino-http": "^9.0.0",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/types": "^18.4.4",
"@nestjs/cli": "10.2.1",
"@nestjs/schematics": "^10.0.3",
"@nestjs/testing": "^10.3.0",
"@swc-node/register": "^1.6.8",
"@swc/cli": "^0.1.63",
"@swc/core": "1.3.102",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsonc": "^2.11.2",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-security": "^2.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-yml": "^1.11.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.2.0",
"pino-pretty": "^10.3.1",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"sort-package-json": "^2.6.0",
"swc-loader": "^0.2.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"yaml-eslint-parser": "^1.2.2"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
}
}