UNPKG

2.96 kBJSONView Raw
1{
2 "name": "@nestjs/cli",
3 "version": "7.1.4",
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 "prepublish:next": "npm run build",
22 "publish:next": "npm publish --access public --tag next",
23 "prepublish:npm": "npm run build",
24 "publish:npm": "npm publish --access public",
25 "test": "jest --config test/jest-config.json",
26 "test:dev": "npm run clean && jest --config test/jest-config.json --watchAll",
27 "prerelease": "npm run build",
28 "release": "release-it"
29 },
30 "repository": {
31 "type": "git",
32 "url": "git+https://github.com/nestjs/nest-cli.git"
33 },
34 "contributors": [
35 "Kamil Mysliwiec <mail@kamilmysliwiec.com>",
36 "Mark Pieszak <mark@trilon.io>",
37 "ThomRick"
38 ],
39 "license": "MIT",
40 "bugs": {
41 "url": "https://github.com/nestjs/nest-cli/issues"
42 },
43 "homepage": "https://github.com/nestjs/nest-cli#readme",
44 "dependencies": {
45 "@angular-devkit/core": "9.1.1",
46 "@angular-devkit/schematics": "9.1.1",
47 "@angular-devkit/schematics-cli": "0.901.1",
48 "@nestjs/schematics": "^7.0.0",
49 "@types/webpack": "4.41.12",
50 "chalk": "3.0.0",
51 "chokidar": "3.3.1",
52 "cli-table3": "0.5.1",
53 "commander": "4.1.1",
54 "fork-ts-checker-webpack-plugin": "4.1.3",
55 "inquirer": "7.1.0",
56 "node-emoji": "1.10.0",
57 "ora": "4.0.3",
58 "os-name": "3.1.0",
59 "rimraf": "3.0.2",
60 "shelljs": "0.8.3",
61 "tree-kill": "1.2.2",
62 "tsconfig-paths": "3.9.0",
63 "tsconfig-paths-webpack-plugin": "3.2.0",
64 "typescript": "^3.6.4",
65 "webpack": "4.42.1",
66 "webpack-node-externals": "1.7.2"
67 },
68 "devDependencies": {
69 "@commitlint/cli": "8.3.5",
70 "@commitlint/config-angular": "8.3.4",
71 "@types/copyfiles": "2.1.1",
72 "@types/inquirer": "6.5.0",
73 "@types/jest": "25.2.1",
74 "@types/node": "12.12.31",
75 "@types/node-emoji": "1.8.1",
76 "@types/ora": "3.1.0",
77 "@types/os-name": "2.0.0",
78 "@types/rimraf": "3.0.0",
79 "@types/shelljs": "0.8.7",
80 "@types/webpack-node-externals": "1.7.1",
81 "@typescript-eslint/eslint-plugin": "^2.19.0",
82 "@typescript-eslint/parser": "^2.19.0",
83 "delete-empty": "3.0.0",
84 "eslint": "6.8.0",
85 "eslint-config-prettier": "6.11.0",
86 "eslint-plugin-import": "2.20.2",
87 "gulp": "4.0.2",
88 "gulp-clean": "0.4.0",
89 "husky": "4.2.5",
90 "jest": "25.4.0",
91 "prettier": "2.0.5",
92 "release-it": "13.5.5",
93 "ts-jest": "25.4.0",
94 "ts-loader": "7.0.1",
95 "ts-node": "8.9.1"
96 },
97 "husky": {
98 "hooks": {
99 "commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
100 }
101 }
102}