forked from nestjs/nest-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.34 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
{
"name": "@nestjs/cli",
"version": "6.14.0",
"description": "Nest - modern, fast, powerful node.js web framework (@cli)",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"bin": {
"nest": "bin/nest.js"
},
"scripts": {
"build": "tsc",
"clean": "gulp clean:bundle",
"format": "prettier --write \"**/*.ts\"",
"lint": "tslint -p .",
"start": "node bin/nest.js",
"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"
},
"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": "7.3.8",
"@angular-devkit/schematics": "7.3.8",
"@angular-devkit/schematics-cli": "0.13.8",
"@nestjs/schematics": "^6.8.2",
"@types/webpack": "4.41.2",
"chalk": "2.4.2",
"cli-table3": "0.5.1",
"commander": "4.1.0",
"copyfiles": "2.1.1",
"fork-ts-checker-webpack-plugin": "3.1.1",
"inquirer": "7.0.3",
"node-emoji": "1.10.0",
"ora": "4.0.3",
"os-name": "3.1.0",
"rimraf": "3.0.0",
"tree-kill": "1.2.2",
"tsconfig-paths": "3.9.0",
"tsconfig-paths-webpack-plugin": "3.2.0",
"typescript": "^3.6.4",
"webpack": "4.41.5",
"webpack-node-externals": "1.7.2"
},
"devDependencies": {
"@types/copyfiles": "2.1.1",
"@types/inquirer": "6.5.0",
"@types/jest": "24.0.25",
"@types/node": "12.12.21",
"@types/node-emoji": "1.8.1",
"@types/ora": "3.1.0",
"@types/os-name": "2.0.0",
"@types/rimraf": "2.0.3",
"@types/webpack-node-externals": "1.7.0",
"delete-empty": "3.0.0",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"jest": "24.9.0",
"prettier": "1.19.1",
"ts-jest": "24.3.0",
"ts-loader": "6.2.1",
"ts-node": "8.6.2",
"tslint": "5.20.1"
}
}