-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
79 lines (79 loc) · 2.22 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
{
"name": "nestjs-trpc-workspace",
"version": "1.6.1",
"homepage": "https://nestjs-trpc.io",
"private": true,
"scripts": {
"build": "tsc -b -v packages",
"changelog": "lerna-changelog",
"clean": "tsc -b --clean",
"format": "prettier packages/**/*.ts --ignore-path ./.prettierignore --write",
"lint": "eslint 'packages/**/*.ts' --fix",
"test": "yarn workspaces foreach --all run test",
"release": "release-it",
"prepublish:npm": "yarn build && yarn changelog | pbcopy",
"publish:npm": "lerna publish",
"prepublish:next": "yarn build",
"publish:next": "lerna publish --dist-tag next",
"prepack": "pinst --disable",
"postinstall": "husky",
"postpack": "pinst --enable",
"prepare": "husky"
},
"author": {
"name": "Kevin Edry",
"email": "[email protected]",
"url": "https://kevin-edry.com"
},
"license": "MIT",
"engines": {
"node": "18 || 19 || 20"
},
"workspaces": [
"packages/*",
"examples/*",
"docs"
],
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/prompt-cli": "^19.3.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@nestjs/cli": "^9.3.0",
"@release-it-plugins/workspaces": "^4.2.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/jest": "29.5.12",
"@types/node": "20.14.11",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "9.7.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "5.2.1",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "15.2.7",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"release-it": "17.1.1",
"rimraf": "^4.4.1",
"ts-jest": "29.2.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix",
"yarn test --bail --findRelatedTests"
]
},
"repository": {
"type": "git",
"url": "https://github.com/KevinEdry/nestjs-trpc"
},
"packageManager": "[email protected]"
}