UNPKG

2.99 kBJSONView Raw
1{
2 "name": "@nestjs/cli",
3 "version": "8.2.8",
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 "prepare": "husky install"
31 },
32 "repository": {
33 "type": "git",
34 "url": "git+https://github.com/nestjs/nest-cli.git"
35 },
36 "contributors": [
37 "Kamil Mysliwiec <mail@kamilmysliwiec.com>",
38 "Mark Pieszak <mark@trilon.io>",
39 "ThomRick"
40 ],
41 "license": "MIT",
42 "bugs": {
43 "url": "https://github.com/nestjs/nest-cli/issues"
44 },
45 "homepage": "https://github.com/nestjs/nest-cli#readme",
46 "dependencies": {
47 "@angular-devkit/core": "13.3.6",
48 "@angular-devkit/schematics": "13.3.6",
49 "@angular-devkit/schematics-cli": "13.3.6",
50 "@nestjs/schematics": "^8.0.3",
51 "chalk": "3.0.0",
52 "chokidar": "3.5.3",
53 "cli-table3": "0.6.2",
54 "commander": "4.1.1",
55 "fork-ts-checker-webpack-plugin": "7.2.11",
56 "inquirer": "7.3.3",
57 "node-emoji": "1.11.0",
58 "ora": "5.4.1",
59 "os-name": "4.0.1",
60 "rimraf": "3.0.2",
61 "shelljs": "0.8.5",
62 "source-map-support": "0.5.21",
63 "tree-kill": "1.2.2",
64 "tsconfig-paths": "3.14.1",
65 "tsconfig-paths-webpack-plugin": "3.5.2",
66 "typescript": "4.7.4",
67 "webpack": "5.73.0",
68 "webpack-node-externals": "3.0.0"
69 },
70 "devDependencies": {
71 "@commitlint/cli": "17.0.2",
72 "@commitlint/config-angular": "17.0.0",
73 "@types/copyfiles": "2.4.1",
74 "@types/inquirer": "8.2.1",
75 "@types/jest": "28.1.3",
76 "@types/node": "16.11.41",
77 "@types/node-emoji": "1.8.1",
78 "@types/ora": "3.2.0",
79 "@types/os-name": "3.1.0",
80 "@types/rimraf": "3.0.2",
81 "@types/shelljs": "0.8.11",
82 "@types/webpack-node-externals": "2.5.3",
83 "@typescript-eslint/eslint-plugin": "5.29.0",
84 "@typescript-eslint/parser": "5.29.0",
85 "delete-empty": "3.0.0",
86 "eslint": "8.18.0",
87 "eslint-config-prettier": "8.5.0",
88 "eslint-plugin-import": "2.26.0",
89 "gulp": "4.0.2",
90 "gulp-clean": "0.4.0",
91 "husky": "8.0.1",
92 "jest": "28.1.1",
93 "lint-staged": "13.0.2",
94 "prettier": "2.7.1",
95 "release-it": "15.1.0",
96 "ts-jest": "28.0.5",
97 "ts-loader": "9.3.1",
98 "ts-node": "10.8.1"
99 },
100 "lint-staged": {
101 "**/*.{ts,json}": []
102 }
103}