forked from nestjs/nest-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.92 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
102
103
{
"name": "@nestjs/cli",
"version": "7.6.0",
"description": "Nest - modern, fast, powerful node.js web framework (@cli)",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.11.0"
},
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjs/nest-cli.git"
},
"contributors": [
"Kamil Mysliwiec <[email protected]>",
"Mark Pieszak <[email protected]>",
"ThomRick"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nestjs/nest-cli/issues"
},
"homepage": "https://github.com/nestjs/nest-cli#readme",
"dependencies": {
"@angular-devkit/core": "11.2.6",
"@angular-devkit/schematics": "11.2.6",
"@angular-devkit/schematics-cli": "0.1102.6",
"@nestjs/schematics": "^7.3.0",
"chalk": "3.0.0",
"chokidar": "3.5.1",
"cli-table3": "0.5.1",
"commander": "4.1.1",
"fork-ts-checker-webpack-plugin": "6.2.0",
"inquirer": "7.3.3",
"node-emoji": "1.10.0",
"ora": "5.4.0",
"os-name": "4.0.0",
"rimraf": "3.0.2",
"shelljs": "0.8.4",
"tree-kill": "1.2.2",
"tsconfig-paths": "3.9.0",
"tsconfig-paths-webpack-plugin": "3.5.1",
"typescript": "4.2.3",
"webpack": "5.28.0",
"webpack-node-externals": "2.5.2"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-angular": "12.1.1",
"@types/copyfiles": "2.4.0",
"@types/inquirer": "7.3.1",
"@types/jest": "26.0.22",
"@types/node": "14.14.37",
"@types/node-emoji": "1.8.1",
"@types/ora": "3.2.0",
"@types/os-name": "3.1.0",
"@types/rimraf": "3.0.0",
"@types/shelljs": "0.8.8",
"@types/webpack": "5.28.0",
"@types/webpack-node-externals": "2.5.1",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"delete-empty": "3.0.0",
"eslint": "7.24.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"husky": "6.0.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"release-it": "14.6.1",
"ts-jest": "26.5.4",
"ts-loader": "8.1.0",
"ts-node": "9.1.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
}
}