forked from nestjs/docs.nestjs.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.58 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
{
"name": "nestjs-docs",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"prestart": "npm run docs",
"start": "ng serve --source-map=false",
"start:watch": "ng serve --source-map=false --watch",
"prebuild": "npm run docs",
"build": "ng build --deleteOutputPath=false",
"build:watch": "concurrently \"nodemon --config nodemon.json\" \"npm run start:watch\"",
"prebuild:prod": "npm run docs",
"build:prod": "ng build --prod --aot --deleteOutputPath=false",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"docs": "npm run docs-only",
"docs-only": "ts-node -P tools/tsconfig.json tools/dgeni-cli.ts tools/transforms/nestjs-package/index"
},
"private": true,
"dependencies": {
"@angular/animations": "11.1.1",
"@angular/cdk": "11.1.2",
"@angular/common": "11.1.1",
"@angular/compiler": "11.1.1",
"@angular/core": "11.1.1",
"@angular/flex-layout": "10.0.0-beta.32",
"@angular/forms": "11.1.1",
"@angular/http": "7.2.16",
"@angular/material": "11.1.2",
"@angular/platform-browser": "11.1.1",
"@angular/platform-browser-dynamic": "11.1.1",
"@angular/router": "11.1.1",
"core-js": "2.6.12",
"hammerjs": "2.0.8",
"ngx-perfect-scrollbar": "10.1.0",
"nodemon": "2.0.7",
"prismjs": "1.23.0",
"rxjs": "6.6.3",
"rxjs-compat": "6.6.3",
"tslib": "2.1.0",
"zone.js": "0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1101.1",
"@angular/cli": "11.1.1",
"@angular/compiler-cli": "11.1.1",
"@angular/language-service": "11.1.1",
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"@types/jasmine": "3.6.3",
"@types/jasminewd2": "2.0.8",
"@types/lodash": "4.14.168",
"@types/marked": "1.2.1",
"@types/node": "14.14.22",
"@types/prismjs": "1.16.2",
"@types/rimraf": "3.0.0",
"chokidar": "3.5.1",
"codelyzer": "6.0.1",
"concurrently": "5.3.0",
"dgeni": "0.4.13",
"dgeni-packages": "0.28.4",
"jasmine-core": "3.6.0",
"jasmine-spec-reporter": "5.0.2",
"karma": "6.0.3",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.5.4",
"marked": "2.0.0",
"protractor": "7.0.0",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "4.1.3",
"uuid": "8.3.2",
"yargs": "16.2.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
}
}