-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
103 lines (103 loc) · 3.04 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
{
"name": "nest-commander-monorepo",
"version": "0.0.0",
"description": "A module for making CLI applications with NestJS. Decorators for running commands and separating out config parsers included. This package works on top of commander.",
"scripts": {
"build": "nx affected:build --parallel",
"lint": "eslint --ext .ts .",
"format": "prettier \"{packages,integration}/**/{src,test}/*.ts\"",
"format:check": "pnpm format -- --check",
"format:write": "pnpm format -- --write",
"postinstall": "husky install",
"release": "changeset publish",
"nx": "nx",
"deploy": "nx deploy docs",
"e2e": "nx e2e integration"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/jmcdo29/nest-commander.git"
},
"keywords": [
"cli",
"nestjs",
"application",
"command",
"command-line",
"nest",
"decorator"
],
"author": "Jay McDoniel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmcdo29/nest-commander/issues"
},
"homepage": "https://jmcdo29.github.io/nest-commander",
"devDependencies": {
"@algolia/client-search": "^4.17.0",
"@angular-devkit/core": "17.3.8",
"@angular-devkit/schematics": "17.3.8",
"@angular-devkit/schematics-cli": "14.0.5",
"@astrojs/preact": "^3.0.0",
"@astrojs/react": "^3.0.0",
"@astrojs/sitemap": "^3.0.0",
"@changesets/cli": "2.27.9",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@docsearch/css": "^3.3.0",
"@docsearch/react": "^3.3.0",
"@golevelup/nestjs-discovery": "4.0.1",
"@mdx-js/react": "3.0.1",
"@nestjs/cli": "10.4.5",
"@nestjs/common": "10.4.4",
"@nestjs/core": "10.4.4",
"@nestjs/schematics": "^10.1.4",
"@nestjs/testing": "10.4.4",
"@nrwl/js": "16.10.0",
"@nrwl/node": "16.10.0",
"@nrwl/nx-cloud": "15.3.5",
"@nrwl/workspace": "16.10.0",
"@swc/core": "1.7.26",
"@swc/register": "0.1.10",
"@types/inquirer": "8.2.10",
"@types/node": "18.19.55",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"astro": "^4.0.0",
"c8": "8.0.1",
"clsx": "2.1.1",
"commander": "11.1.0",
"conventional-changelog-cli": "3.0.0",
"cosmiconfig": "8.3.6",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"hanbi": "1.0.3",
"hastscript": "^7.2.0",
"husky": "8.0.3",
"inquirer": "8.2.6",
"lint-staged": "13.3.0",
"nx": "16.10.0",
"nx-uvu": "1.3.1",
"pinst": "3.0.0",
"preact": "^10.13.2",
"prettier": "2.8.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"reflect-metadata": "0.2.2",
"remark-directive": "^2.0.1",
"rxjs": "7.8.1",
"typescript": "5.6.2",
"unist-util-visit": "^5.0.0",
"url-loader": "4.1.1",
"uvu": "0.5.6"
},
"resolutions": {
"terser": "^5.0.0",
"reflect-metadata": "0.2.2"
}
}