-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.6 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.6 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "ng-doc-portal-workspace",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx run component-doc-portal:serve",
"build": "nx run component-doc-portal:build",
"generate:doc-page": "nx g @oasisdigital/ng-doc-portal-plugin:doc-page",
"generate:app": "nx g @oasisdigital/ng-doc-portal-plugin:app",
"gen:perf-testing": "ts-node --project libs/perf/tsconfig.lib.json -r dotenv/config libs/perf/src/lib/generate-doc-pages.ts",
"test": "nx test",
"lint": "nx workspace-lint && nx run-many --target=lint --all",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"check": "run-s format:check lint test",
"affected:lint": "nx affected:lint --base=origin/main",
"affected:test": "nx affected:test --parallel --base=origin/main",
"affected:check": "run-s format:check affected:lint affected:test --base=origin/main",
"build:packages": "nx build ng-doc-portal && nx build ng-doc-portal-plugin",
"update-versions": "node ./tools/scripts/update-versions.js"
},
"private": true,
"dependencies": {
"@angular/animations": "18.2.0",
"@angular/cdk": "18.2.0",
"@angular/common": "18.2.0",
"@angular/compiler": "18.2.0",
"@angular/core": "18.2.0",
"@angular/forms": "18.2.0",
"@angular/localize": "18.2.0",
"@angular/platform-browser": "18.2.0",
"@angular/platform-browser-dynamic": "18.2.0",
"@angular/router": "18.2.0",
"@swc/helpers": "0.5.11",
"marked": "12.0.1",
"marked-highlight": "2.1.1",
"ngx-highlightjs": "10.0.0",
"rxjs": "7.8.1",
"tslib": "2.6.2",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.0",
"@angular-devkit/core": "18.2.0",
"@angular-devkit/schematics": "18.2.0",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "~18.0.0",
"@angular/compiler-cli": "18.2.0",
"@angular/language-service": "18.2.0",
"@hirez_io/observer-spy": "2.2.0",
"@nx/angular": "19.6.0",
"@nx/cypress": "19.6.0",
"@nx/devkit": "19.6.0",
"@nx/eslint": "19.6.0",
"@nx/eslint-plugin": "19.6.0",
"@nx/jest": "19.6.0",
"@nx/js": "19.6.0",
"@nx/node": "19.6.0",
"@nx/plugin": "19.6.0",
"@nx/workspace": "19.6.0",
"@phenomnomnominal/tsquery": "6.1.3",
"@schematics/angular": "18.2.0",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.3.14",
"@swc/core": "1.5.7",
"@types/jest": "29.5.12",
"@types/marked": "5.0.1",
"@types/node": "20.11.30",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"@typescript-eslint/utils": "7.16.0",
"autoprefixer": "10.4.19",
"chalk": "4.1.2",
"chokidar": "3.6.0",
"cypress": "13.3.3",
"date-fns": "3.6.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-cypress": "2.13.4",
"eslint-plugin-import": "2.29.1",
"fast-glob": "3.3.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-preset-angular": "14.1.1",
"jsonc-eslint-parser": "2.4.0",
"minimatch": "9.0.3",
"ng-packagr": "18.2.0",
"npm-run-all": "4.1.5",
"nx": "19.6.0",
"postcss": "8.4.38",
"postcss-import": "16.1.0",
"postcss-preset-env": "10.0.1",
"postcss-url": "10.1.3",
"prettier": "3.2.5",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.5.4",
"uuid": "9.0.1",
"yargs": "17.7.2"
}
}