-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.22 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.22 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
{
"name": "mintplayer-ng-bootstrap",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"nx": "nx",
"postinstall": "node ./decorate-angular-cli.js",
"start": "nx serve",
"build": "nx build",
"build:wba": "nx build --stats-json",
"analyze:wba": "webpack-bundle-analyzer dist/apps/ng-bootstrap-demo/stats.json",
"build:sme": "nx build --source-map",
"analyze:sme": "source-map-explorer dist/apps/ng-bootstrap-demo/browser/browser/*",
"test": "nx run-many --target=test --all --parallel",
"test:watch": "vitest --workspace=vitest.workspace.ts",
"dev:ssr": "nx serve ng-bootstrap-demo"
},
"private": true,
"dependencies": {
"@angular/animations": "~21.1.6",
"@angular/cdk": "~21.1.6",
"@angular/common": "~21.1.6",
"@angular/compiler": "~21.1.6",
"@angular/core": "~21.1.6",
"@angular/forms": "~21.1.6",
"@angular/platform-browser": "~21.1.6",
"@angular/platform-browser-dynamic": "~21.1.6",
"@angular/platform-server": "~21.1.6",
"@angular/router": "~21.1.6",
"@angular/ssr": "~21.1.5",
"@nx/angular": "22.5.3",
"bootstrap": "^5.3.3",
"bootstrap-icons": "~1.11.3",
"express": "^5.1.0",
"ngx-highlightjs": "~14.0.0",
"ts-dedent": "^2.2.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@analogjs/vitest-angular": "^2.2.3",
"@angular/build": "~21.1.5",
"@angular-devkit/build-angular": "~21.1.5",
"@angular-devkit/core": "~21.1.5",
"@angular-devkit/schematics": "~21.1.5",
"@angular-eslint/eslint-plugin": "~21.0.1",
"@angular-eslint/eslint-plugin-template": "~21.0.1",
"@angular-eslint/template-parser": "~21.0.1",
"@angular/cli": "~21.1.5",
"@angular/compiler-cli": "~21.1.6",
"@angular/language-service": "~21.1.6",
"@nx/cypress": "22.5.3",
"@nx/eslint": "22.5.3",
"@nx/eslint-plugin": "22.5.3",
"@nx/js": "22.5.3",
"@nx/vite": "^22.5.3",
"@nx/vitest": "^22.5.3",
"@nx/workspace": "22.5.3",
"@schematics/angular": "21.1.5",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.8",
"@types/express": "^5.0.1",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"@typescript-eslint/utils": "^7.16.0",
"@vitest/coverage-v8": "^4.0.16",
"autoprefixer": "^10.4.0",
"browser-sync": "^3.0.0",
"cypress": "^13.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "10.0.0",
"eslint-plugin-cypress": "^2.13.4",
"jsdom": "^27.2.0",
"ng-mocks": "^14.15.0",
"ng-packagr": "~21.1.0",
"nx": "22.5.3",
"postcss": "^8.4.5",
"postcss-import": "^14.1.0",
"postcss-preset-env": "^7.5.0",
"postcss-url": "^10.1.3",
"prettier": "^2.6.2",
"resize-observer-polyfill": "^1.5.1",
"source-map-explorer": "^2.5.3",
"ts-node": "10.9.1",
"typescript": "5.9.3",
"vite": "^6.4.1",
"vitest": "^4.0.16",
"webpack-bundle-analyzer": "~4.9.0"
},
"overrides": {
"ng-mocks": {
"@angular/common": "$@angular/common",
"@angular/core": "$@angular/core",
"@angular/forms": "$@angular/forms",
"@angular/platform-browser": "$@angular/platform-browser",
"@angular/router": "$@angular/router"
}
}
}