-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
87 lines (87 loc) · 2.61 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
87
{
"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": "eslint \"**/*.{ts,tsx}\" ",
"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"
},
"lint-staged": {
"**/*.{ts,json}": []
},
"private": true,
"dependencies": {
"@angular/animations": "18.2.8",
"@angular/cdk": "18.2.9",
"@angular/common": "18.2.8",
"@angular/compiler": "18.2.8",
"@angular/core": "18.2.8",
"@angular/forms": "18.2.8",
"@angular/material": "18.2.9",
"@angular/platform-browser": "18.2.8",
"@angular/platform-browser-dynamic": "18.2.8",
"@angular/router": "18.2.8",
"@angular/service-worker": "18.2.8",
"core-js": "3.31.0",
"hammerjs": "2.0.8",
"nodemon": "3.1.7",
"prismjs": "1.29.0",
"rxjs": "7.8.1",
"rxjs-compat": "6.6.7",
"tslib": "2.8.0",
"zone.js": "0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.9",
"@angular-eslint/eslint-plugin": "18.3.1",
"@angular/cli": "18.2.9",
"@angular/compiler-cli": "18.2.8",
"@angular/language-service": "18.2.8",
"@commitlint/cli": "19.5.0",
"@commitlint/config-angular": "19.5.0",
"@eslint/js": "9.12.0",
"@types/jasmine": "5.1.4",
"@types/jasminewd2": "2.0.13",
"@types/lodash": "4.17.10",
"@types/marked": "6.0.0",
"@types/node": "22.8.2",
"@types/prismjs": "1.26.0",
"@types/rimraf": "4.0.5",
"angular-eslint": "^18.3.1",
"chokidar": "4.0.1",
"concurrently": "9.0.1",
"dgeni": "0.4.14",
"dgeni-packages": "0.30.0",
"eslint": "9.12.0",
"husky": "9.1.6",
"jasmine-core": "5.0.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"lint-staged": "15.2.10",
"marked": "2.1.3",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"typescript-eslint": "^8.10.0",
"uuid": "11.0.1",
"yargs": "17.7.2"
}
}