forked from nestjs/nest-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "@nestjs/cli",
"version": "6.4.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",
"format": "prettier --write \"**/*.ts\"",
"lint": "./node_modules/tslint/bin/tslint -p .",
"start": "node bin/nest.js",
"test": "jest --config test/jest-config.json",
"test:dev": "jest --config test/jest-config.json --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjs/nest-cli.git"
},
"contributors": [
"ThomRick",
"Kamil Mysliwiec <[email protected]>"
],
"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.1.0",
"chalk": "2.4.2",
"cli-table3": "0.5.1",
"commander": "2.20.0",
"inquirer": "6.3.1",
"node-emoji": "1.10.0",
"ora": "2.1.0",
"os-name": "3.1.0",
"typescript": "3.4.3"
},
"devDependencies": {
"@types/inquirer": "6.0.0",
"@types/jest": "24.0.11",
"@types/node": "11.13.4",
"@types/node-emoji": "1.8.1",
"@types/ora": "1.3.4",
"@types/os-name": "2.0.0",
"jest": "24.7.1",
"prettier": "1.17.0",
"ts-jest": "24.0.2",
"ts-node": "8.1.0",
"tslint": "5.16.0"
}
}