forked from eclipse-edc/DataDashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.5 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.5 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
{
"name": "data-dashboard",
"version": "0.3.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"lib-start": "ng build @eclipse-edc/dashboard-core --watch",
"build": "ng build",
"lib-build": "ng build @eclipse-edc/dashboard-core",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lib-test": "ng test --project @eclipse-edc/dashboard-core",
"lint": "ng lint",
"prepare": "husky",
"cypress:open": "ng run data-dashboard:cypress-open",
"cypress:run:e2e": "npm run lib-build && ng run data-dashboard:cypress-run-e2e",
"cypress:run:component": "npm run lib-build && ng run data-dashboard:cypress-run-component"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.18",
"@angular/cdk": "^20.2.10",
"@angular/common": "^20.3.18",
"@angular/compiler": "^20.3.18",
"@angular/core": "^20.3.18",
"@angular/forms": "^20.3.18",
"@angular/platform-browser": "^20.3.18",
"@angular/platform-browser-dynamic": "^20.3.18",
"@angular/router": "^20.3.18",
"@think-it-labs/edc-connector-client": "0.9.5",
"material-symbols": "^0.42.3",
"mime": "^4.1.0",
"ngx-float-ui": "^20.0.0",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"uuid": "^13.0.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/core": "^20.3.9",
"@angular-devkit/build-angular": "^20.3.9",
"@angular/build": "^20.3.0",
"@angular/cli": "^20.3.9",
"@angular/compiler-cli": "^20.3.18",
"@cypress/schematic": "^4.1.4",
"@tailwindcss/postcss": "^4.1.16",
"@types/jasmine": "~5.1.12",
"angular-eslint": "20.5.0",
"cypress": "^15.6.0",
"daisyui": "^5.3.10",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jasmine-core": "~5.12.1",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^16.2.6",
"ng-packagr": "^20.3.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.17",
"typescript": "~5.9.3",
"typescript-eslint": "8.46.2"
},
"lint-staged": {
"src/**/*.{ts,js}": "eslint --cache --fix",
"projects/dashboard-core/**/*.{ts,js}": "eslint --cache --fix --config projects/dashboard-core/eslint.config.js",
"src/**/*.{json,yml,yaml,html,css,js,ts}": "prettier --write",
"projects/dashboard-core/**/*.{json,yml,yaml,html,css,js,ts}": "prettier --write"
}
}