forked from nestjs/nest-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.65 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
{
"name": "@nestjs/cli",
"version": "5.8.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.2.2",
"@angular-devkit/schematics": "7.2.2",
"@angular-devkit/schematics-cli": "^0.12.2",
"@nestjs/schematics": "^5.12.0",
"chalk": "^2.4.1",
"cli-table2": "^0.2.0",
"commander": "^2.19.0",
"inquirer": "^5.2.0",
"node-emoji": "^1.8.1",
"ora": "^2.1.0",
"os-name": "^2.0.1",
"typescript": "^3.2.2"
},
"devDependencies": {
"@types/cli-table2": "^0.2.2",
"@types/inquirer": "0.0.41",
"@types/jest": "^22.2.3",
"@types/node": "^9.6.19",
"@types/node-emoji": "^1.8.0",
"@types/ora": "^1.3.4",
"@types/os-name": "^2.0.0",
"jest": "^22.4.4",
"prettier": "^1.15.3",
"ts-jest": "^22.4.6",
"ts-node": "^6.0.5",
"tslint": "^5.11.0"
}
}