-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.95 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
{
"name": "@daelmaak/ngx-gallery",
"license": "Apache-2.0",
"author": {
"name": "Daniel Macak",
"email": "daniel.macak@email.cz"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=22.0.0"
},
"type": "module",
"scripts": {
"nx": "nx",
"start": "nx run demo:serve --host 0.0.0.0",
"build": "nx run gallery:build:production",
"build:demo": "nx run demo:build:production --base-href /ngx-gallery/",
"bundle-stats": "nx run demo:build:production --stats-json && webpack-bundle-analyzer docs/stats.json",
"test": "nx run gallery:test --browsers=ChromeHeadlessLocal",
"test:ai": "nx run gallery:test --watch=false --browsers=ChromeHeadlessLocal",
"test:ci": "nx run gallery:test --watch=false --code-coverage --browsers=ChromeHeadless",
"test:cy": "nx component-test gallery --watch",
"test:cy:ci": "DISPLAY= nx component-test gallery",
"lint": "nx run gallery:lint"
},
"private": true,
"dependencies": {
"@angular/cdk": "21.1.2",
"@angular/common": "21.1.2",
"@angular/compiler": "21.1.2",
"@angular/core": "21.1.2",
"@angular/forms": "21.1.2",
"@angular/material": "21.1.2",
"@angular/platform-browser": "21.1.2",
"@angular/platform-browser-dynamic": "21.1.2",
"@angular/platform-server": "21.1.2",
"@angular/router": "21.1.2",
"@angular/ssr": "21.1.2",
"express": "~4.18.2",
"rxjs": "~6.6.7",
"zone.js": "0.16.0"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "~2.1.2",
"@analogjs/vitest-angular": "~2.1.2",
"@angular-devkit/build-angular": "21.1.2",
"@angular/cli": "21.1.2",
"@angular/compiler-cli": "21.1.2",
"@angular/language-service": "21.1.2",
"@cypress/webpack-dev-server": "5.6.0",
"@eslint/js": "^10.0.1",
"@nx/angular": "22.4.4",
"@nx/cypress": "22.4.4",
"@nx/eslint": "22.4.4",
"@nx/eslint-plugin": "22.4.4",
"@nx/js": "22.4.4",
"@nx/workspace": "22.4.4",
"@schematics/angular": "21.1.2",
"@types/estree": "^1.0.1",
"@types/express": "4.17.14",
"@types/jasmine": "~3.10.2",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^18.16.9",
"@types/webpack": "^5.28.5",
"angular-eslint": "^21.2.0",
"autoprefixer": "^10.4.0",
"browser-sync": "^3.0.0",
"cypress": "15.9.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.2",
"html-webpack-plugin": "^5.5.0",
"jasmine-core": "~3.10.1",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "21.1.0",
"nx": "22.4.4",
"postcss": "^8.4.5",
"postcss-import": "~14.1.0",
"postcss-preset-env": "~7.5.0",
"postcss-url": "~10.1.3",
"prettier": "~3.6.2",
"typescript": "5.9.3",
"typescript-eslint": "^8.56.0",
"webpack-bundle-analyzer": "^4.9.0"
}
}