forked from jmcdo29/nest-commander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.96 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
{
"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": "14.0.5",
"@angular-devkit/schematics": "14.0.5",
"@angular-devkit/schematics-cli": "14.0.5",
"@astrojs/preact": "^2.1.0",
"@astrojs/react": "^2.1.1",
"@astrojs/sitemap": "^2.0.0",
"@changesets/cli": "2.26.2",
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@docsearch/css": "^3.3.0",
"@docsearch/react": "^3.3.0",
"@golevelup/nestjs-discovery": "4.0.0",
"@mdx-js/react": "2.3.0",
"@nestjs/cli": "10.1.10",
"@nestjs/common": "10.0.0",
"@nestjs/core": "10.0.0",
"@nestjs/testing": "10.0.0",
"@nrwl/js": "16.5.5",
"@nrwl/node": "16.5.5",
"@nrwl/nx-cloud": "15.3.5",
"@nrwl/workspace": "16.5.5",
"@swc/core": "1.3.72",
"@swc/register": "0.1.10",
"@types/inquirer": "8.2.6",
"@types/node": "18.17.1",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"astro": "^2.3.0",
"c8": "8.0.1",
"clsx": "2.0.0",
"commander": "11.0.0",
"conventional-changelog-cli": "3.0.0",
"cosmiconfig": "8.2.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.46.0",
"eslint-config-prettier": "8.9.0",
"eslint-plugin-prettier": "4.2.1",
"hanbi": "1.0.1",
"hastscript": "^7.2.0",
"husky": "8.0.3",
"inquirer": "8.2.5",
"lint-staged": "13.2.3",
"nx": "16.5.5",
"nx-uvu": "1.3.0",
"pinst": "3.0.0",
"preact": "^10.13.2",
"prettier": "2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"reflect-metadata": "0.1.13",
"remark-directive": "^2.0.1",
"rxjs": "7.8.1",
"typescript": "5.1.6",
"unist-util-visit": "^5.0.0",
"url-loader": "4.1.1",
"uvu": "0.5.6"
},
"resolutions": {
"terser": "^5.0.0"
}
}