forked from golevelup/nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.56 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
{
"name": "root",
"private": true,
"license": "MIT",
"dependencies": {
"@nestjs/common": "^10.4.4",
"@nestjs/core": "^10.4.4",
"@nestjs/platform-express": "^10.4.4",
"lodash": "^4.17.21",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/prompt": "^19.5.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@nestjs/testing": "^10.4.4",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.17.10",
"@types/mime": "3.0.4",
"@types/node": "^20.16.10",
"@types/supertest": "^6.0.2",
"@types/express": "5.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "8.8.1",
"all-contributors-cli": "^6.26.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.10.0",
"husky": "^9.1.6",
"jest": "^27.4.3",
"lerna": "^8.1.8",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^5.0.0",
"supertest": "^7.0.0",
"ts-jest": "^27.1.1",
"typescript": "4.9.5"
},
"optionalDependencies": {
"@vitest/coverage-v8": "^1.6.0",
"vitest": "^1.6.0"
},
"scripts": {
"commit": "pnpm git-cz",
"lerna:publish": "lerna run build && pnpm test && lerna publish -m 'chore: publish'",
"lerna:prerelease": "lerna run build && pnpm test && lerna publish prerelease --preid rc -m 'chore: publish prerelease'",
"build": " lerna run build --ignore rabbitmq-integration",
"build:watch": "lerna run --parallel build:watch --ignore rabbitmq-integration",
"clean": "rimraf packages//lib && rimraf packages//*.tsbuildinfo",
"test": "jest",
"test:integration": "jest --config ./jest-e2e.json",
"test:ci:integration": "NODE_ENV=ci jest --config ./jest-e2e.json --forceExit",
"test:ci": "jest --coverage --coverageReporters=cobertura --coverageReporters=html",
"test:vitest": "vitest",
"test:vitest:ci": "vitest run --coverage",
"lint": "eslint .",
"contributors:generate": "all-contributors generate",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"pnpm prettier --write",
"pnpm lint",
"git add"
],
"*.md": [
"pnpm prettier --write",
"git add"
]
},
"version": "0.0.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"volta": {
"node": "20.18.0"
}
}