-
-
Notifications
You must be signed in to change notification settings - Fork 300
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.73 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.73 KB
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": "^11.1.17",
"@nestjs/core": "^11.1.17",
"@nestjs/platform-express": "^11.1.17",
"lodash": "^4.17.23",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/prompt": "^20.5.0",
"@nestjs/testing": "^11.1.17",
"@types/express": "5.0.6",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/node": "^25.5.0",
"all-contributors-cli": "^6.26.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lerna": "^9.0.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"pactum": "^3.9.1",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.6",
"typescript": "5.9.3",
"vite": "^8.0.1",
"vitepress": "^1.6.4"
},
"optionalDependencies": {
"@vitest/coverage-v8": "^4.1.0",
"vitest": "^4.1.0"
},
"scripts": {
"commit": "pnpm git-cz",
"lerna:version": "lerna version --no-private",
"lerna:publish": "lerna run build && pnpm test && lerna publish from-package --no-private -m 'chore: publish'",
"lerna:prerelease": "lerna run build && pnpm test && lerna publish prerelease --preid rc -m 'chore: publish prerelease'",
"lerna:typecheck": "lerna run typecheck",
"build": " lerna run build --ignore rabbitmq-integration --ignore google-cloud-pubsub-integration",
"copy-readme": "lerna run copy-readme",
"build:watch": "lerna run --parallel build:watch --ignore rabbitmq-integration --ignore google-cloud-pubsub-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": "oxlint .",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"contributors:generate": "all-contributors generate",
"prepare": "husky",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prep-release": "pnpm changeset"
},
"lint-staged": {
"*.ts": [
"oxfmt --write",
"oxlint",
"git add"
],
"*.md": [
"oxfmt --write",
"git add"
]
},
"version": "0.0.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}