UNPKG

2.99 kBJSONView Raw
1{
2 "name": "@nestjs/cli",
3 "version": "8.1.6",
4 "description": "Nest - modern, fast, powerful node.js web framework (@cli)",
5 "publishConfig": {
6 "access": "public"
7 },
8 "engines": {
9 "node": ">= 10.13.0",
10 "npm": ">= 6.11.0"
11 },
12 "bin": {
13 "nest": "bin/nest.js"
14 },
15 "scripts": {
16 "build": "tsc",
17 "clean": "gulp clean:bundle",
18 "format": "prettier --write \"**/*.ts\"",
19 "lint": "eslint '{lib,commands,actions}/**/*.ts' --fix",
20 "start": "node bin/nest.js",
21 "prepack": "npm run build",
22 "prepublish:next": "npm run build",
23 "publish:next": "npm publish --access public --tag next",
24 "prepublish:npm": "npm run build",
25 "publish:npm": "npm publish --access public",
26 "test": "jest --config test/jest-config.json",
27 "test:dev": "npm run clean && jest --config test/jest-config.json --watchAll",
28 "prerelease": "npm run build",
29 "release": "release-it"
30 },
31 "repository": {
32 "type": "git",
33 "url": "git+https://github.com/nestjs/nest-cli.git"
34 },
35 "contributors": [
36 "Kamil Mysliwiec <mail@kamilmysliwiec.com>",
37 "Mark Pieszak <mark@trilon.io>",
38 "ThomRick"
39 ],
40 "license": "MIT",
41 "bugs": {
42 "url": "https://github.com/nestjs/nest-cli/issues"
43 },
44 "homepage": "https://github.com/nestjs/nest-cli#readme",
45 "dependencies": {
46 "@angular-devkit/core": "13.1.1",
47 "@angular-devkit/schematics": "13.1.1",
48 "@angular-devkit/schematics-cli": "13.1.1",
49 "@nestjs/schematics": "^8.0.3",
50 "chalk": "3.0.0",
51 "chokidar": "3.5.2",
52 "cli-table3": "0.6.0",
53 "commander": "4.1.1",
54 "fork-ts-checker-webpack-plugin": "6.5.0",
55 "inquirer": "7.3.3",
56 "node-emoji": "1.11.0",
57 "ora": "5.4.1",
58 "os-name": "4.0.1",
59 "rimraf": "3.0.2",
60 "shelljs": "0.8.4",
61 "source-map-support": "0.5.21",
62 "tree-kill": "1.2.2",
63 "tsconfig-paths": "3.12.0",
64 "tsconfig-paths-webpack-plugin": "3.5.2",
65 "typescript": "4.3.5",
66 "webpack": "5.65.0",
67 "webpack-node-externals": "3.0.0"
68 },
69 "devDependencies": {
70 "@commitlint/cli": "15.0.0",
71 "@commitlint/config-angular": "15.0.0",
72 "@types/copyfiles": "2.4.1",
73 "@types/inquirer": "7.3.3",
74 "@types/jest": "27.0.3",
75 "@types/node": "16.11.12",
76 "@types/node-emoji": "1.8.1",
77 "@types/ora": "3.2.0",
78 "@types/os-name": "3.1.0",
79 "@types/rimraf": "3.0.2",
80 "@types/shelljs": "0.8.9",
81 "@types/webpack-node-externals": "2.5.3",
82 "@typescript-eslint/eslint-plugin": "5.6.0",
83 "@typescript-eslint/parser": "5.6.0",
84 "delete-empty": "3.0.0",
85 "eslint": "8.4.1",
86 "eslint-config-prettier": "8.3.0",
87 "eslint-plugin-import": "2.25.3",
88 "gulp": "4.0.2",
89 "gulp-clean": "0.4.0",
90 "husky": "7.0.4",
91 "jest": "27.4.4",
92 "prettier": "2.5.1",
93 "release-it": "14.11.8",
94 "ts-jest": "27.1.1",
95 "ts-loader": "9.2.6",
96 "ts-node": "10.4.0"
97 },
98 "husky": {
99 "hooks": {
100 "commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
101 }
102 }
103}