forked from nestjs/docs.nestjs.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.53 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-docs",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"prestart": "npm run docs",
"start": "ng serve",
"start:watch": "ng serve --watch",
"prebuild": "npm run docs",
"build": "ng build --delete-output-path=false",
"build:watch": "concurrently \"nodemon --config nodemon.json\" \"npm run start:watch\"",
"prebuild:prod": "npm run docs",
"build:prod": "ng build --configuration production --aot --delete-output-path=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",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{ts,json}": []
},
"private": true,
"dependencies": {
"@angular/animations": "14.0.5",
"@angular/cdk": "14.0.4",
"@angular/common": "14.0.5",
"@angular/compiler": "14.0.5",
"@angular/core": "14.0.5",
"@angular/flex-layout": "14.0.0-beta.40",
"@angular/forms": "14.0.5",
"@angular/material": "14.0.4",
"@angular/platform-browser": "14.0.5",
"@angular/platform-browser-dynamic": "14.0.5",
"@angular/router": "14.0.5",
"core-js": "3.23.4",
"hammerjs": "2.0.8",
"ngx-perfect-scrollbar": "10.1.1",
"nodemon": "2.0.19",
"prismjs": "1.28.0",
"rxjs": "7.5.5",
"rxjs-compat": "6.6.7",
"tslib": "2.4.0",
"zone.js": "0.11.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.5",
"@angular/cli": "14.0.5",
"@angular/compiler-cli": "14.0.5",
"@angular/language-service": "14.0.5",
"@commitlint/cli": "17.0.3",
"@commitlint/config-angular": "17.0.3",
"@types/jasmine": "4.0.3",
"@types/jasminewd2": "2.0.10",
"@types/lodash": "4.14.182",
"@types/marked": "1.2.2",
"@types/node": "16.11.43",
"@types/prismjs": "1.26.0",
"@types/rimraf": "3.0.2",
"chokidar": "3.5.3",
"concurrently": "7.2.2",
"dgeni": "0.4.14",
"dgeni-packages": "0.29.3",
"husky": "8.0.1",
"jasmine-core": "4.2.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.0",
"karma-chrome-launcher": "3.1.1",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"lint-staged": "13.0.3",
"marked": "2.1.3",
"protractor": "7.0.0",
"rimraf": "3.0.2",
"ts-node": "10.8.2",
"tslint": "6.1.3",
"typescript": "4.7.4",
"uuid": "8.3.2",
"yargs": "17.5.1"
}
}