๐Ÿ“ฆ nestjs / nest-cli

๐Ÿ“„ package.json ยท 102 lines
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{
  "name": "@nestjs/cli",
  "version": "11.0.16",
  "description": "Nest - modern, fast, powerful node.js web framework (@cli)",
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">= 20.11"
  },
  "bin": {
    "nest": "bin/nest.js"
  },
  "scripts": {
    "build": "tsc",
    "clean": "gulp clean:bundle",
    "format": "prettier --write \"**/*.ts\"",
    "lint": "eslint '{lib,commands,actions}/**/*.ts' --fix",
    "start": "node bin/nest.js",
    "prepack": "npm run build",
    "prepublish:next": "npm run build",
    "publish:next": "npm publish --access public --tag next",
    "prepublish:npm": "npm run build",
    "publish:npm": "npm publish --access public",
    "test": "jest --config test/jest-config.json",
    "test:dev": "npm run clean && jest --config test/jest-config.json --watchAll",
    "prerelease": "npm run build",
    "release": "release-it",
    "prepare": "husky"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nestjs/nest-cli.git"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/nestjs/nest-cli/issues"
  },
  "homepage": "https://github.com/nestjs/nest-cli#readme",
  "dependencies": {
    "@angular-devkit/core": "19.2.19",
    "@angular-devkit/schematics": "19.2.19",
    "@angular-devkit/schematics-cli": "19.2.19",
    "@inquirer/prompts": "7.10.1",
    "@nestjs/schematics": "^11.0.1",
    "ansis": "4.2.0",
    "chokidar": "4.0.3",
    "cli-table3": "0.6.5",
    "commander": "4.1.1",
    "fork-ts-checker-webpack-plugin": "9.1.0",
    "glob": "13.0.0",
    "node-emoji": "1.11.0",
    "ora": "5.4.1",
    "tsconfig-paths": "4.2.0",
    "tsconfig-paths-webpack-plugin": "4.2.0",
    "typescript": "5.9.3",
    "webpack": "5.104.1",
    "webpack-node-externals": "3.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "20.3.1",
    "@commitlint/config-angular": "20.3.1",
    "@swc/cli": "0.7.10",
    "@swc/core": "1.15.10",
    "@types/inquirer": "9.0.9",
    "@types/jest": "29.5.14",
    "@types/node": "24.10.9",
    "@types/node-emoji": "1.8.2",
    "@types/webpack-node-externals": "3.0.4",
    "@typescript-eslint/eslint-plugin": "8.53.1",
    "@typescript-eslint/parser": "8.53.1",
    "delete-empty": "3.0.0",
    "eslint": "9.39.2",
    "eslint-config-prettier": "10.1.8",
    "gulp": "5.0.1",
    "gulp-clean": "0.4.0",
    "husky": "9.1.7",
    "jest": "29.7.0",
    "lint-staged": "16.2.7",
    "prettier": "3.8.0",
    "release-it": "19.2.3",
    "ts-jest": "29.4.6",
    "ts-loader": "9.5.4",
    "ts-node": "10.9.2"
  },
  "lint-staged": {
    "**/*.{ts,json}": []
  },
  "peerDependencies": {
    "@swc/cli": "^0.1.62 || ^0.3.0 || ^0.4.0 || ^0.5.0 || ^0.6.0 || ^0.7.0",
    "@swc/core": "^1.3.62"
  },
  "peerDependenciesMeta": {
    "@swc/cli": {
      "optional": true
    },
    "@swc/core": {
      "optional": true
    }
  }
}