generated from GabrielGuedess/NestJs-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.9 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
{
"name": "notes-app-backend",
"version": "1.0.5",
"description": "Notes App Backend",
"license": "MIT",
"author": "Midyanisa Yuniar",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"commit": "cz",
"find-deadcode": "ts-prune -p tsconfig.json -e",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --max-warnings=0",
"migrate:dev": "dotenv -e .env.development -- npx prisma migrate dev --schema ./prisma/schema.prisma",
"prepare": "husky install",
"release": "semantic-release",
"setup:dev": "dotenv -e .env.development -- docker compose up -d",
"sort:package": "sort-package-json",
"start": "nest start",
"start:debug": "nest start --debug --watch",
"start:dev": "dotenv -e .env.development -- nest start --watch",
"start:prod": "node dist/main",
"test": "jest --config jest.config.ts",
"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",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"package.json": "pnpm sort:package",
"src/**/*.ts": [
"bash -c tsc --noEmit",
"pnpm find-deadcode",
"pnpm lint --fix",
"pnpm test -- --findRelatedTests --bail --passWithNoTests"
],
"test/**/*.ts": [
"pnpm test:e2e -- --findRelatedTests --bail --passWithNoTests"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@fastify/static": "^6.10.2",
"@nestjs/cache-manager": "^2.0.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/platform-fastify": "^10.0.0",
"@nestjs/swagger": "^7.0.0",
"@prisma/client": "^5.0.0",
"cache-manager": "^5.2.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"reflect-metadata": "^0.2.0",
"rimraf": "^5.0.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@commitlint/types": "^17.4.4",
"@darraghor/eslint-plugin-nestjs-typed": "^4.0.0",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/cache-manager": "^4.0.2",
"@types/express": "^4.17.17",
"@types/jest": "29.5.11",
"@types/node": "^20.2.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^8.0.3",
"jest": "29.7.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prisma": "^5.0.0",
"prisma-dbml-generator": "^0.10.0",
"semantic-release": "^21.0.3",
"sort-package-json": "^2.4.1",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "29.1.1",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"ts-prune": "^0.10.3",
"tsconfig-paths": "4.2.0",
"typescript": "^5.1.3",
"webpack": "^5.86.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}