forked from NUM-Forschungsdatenplattform/num-portal-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.79 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.79 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
{
"name": "num-portal-webapp",
"version": "1.23.0-SNAPSHOT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:hmr": "ng serve --hmr",
"build": "node --max_old_space_size=6144 ./node_modules/.bin/ng build",
"test": "jest",
"test-ci": "node --expose-gc ./node_modules/.bin/jest --logHeapUsage --ci -w=1",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"pretty-quick": "pretty-quick --pattern \"src/**/*.{scss,html}\" --ignore-path=.prettierignore",
"docs:build": "npm run docs:build:en && npm run docs:build:de",
"docs:build:en": "cd ./docs && sphinx-build -b html -D language=\"en\" . _build/html/en && cd ..",
"docs:build:de": "cd ./docs && sphinx-build -b html -D language=\"de\" . _build/html/de && cd ..",
"docs:extract-messages": "cd ./docs && sphinx-build -b gettext . _gettext && cd ..",
"docs:update-l10n": "npm run docs:extract-messages && npm run docs:update-po",
"docs:update-po": "cd ./docs && sphinx-intl update -p _gettext && cd ..",
"pre-commit": "pretty-quick --staged --pattern 'src/**/*.{scss,html,ts}' && lint-staged"
},
"dependencies": {
"@angular/animations": "^19.2.18",
"@angular/cdk": "^19.2.18",
"@angular/common": "^19.2.18",
"@angular/compiler": "^19.2.18",
"@angular/core": "^19.2.18",
"@angular/flex-layout": "^15.0.0-beta.42",
"@angular/forms": "^19.2.18",
"@angular/material": "^19.2.18",
"@angular/material-moment-adapter": "^19.2.18",
"@angular/platform-browser": "^19.2.18",
"@angular/platform-browser-dynamic": "^19.2.18",
"@angular/router": "^19.2.18",
"@babel/traverse": "^7.27.0",
"@fortawesome/angular-fontawesome": "^1.0.0",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@juggle/resize-observer": "^3.4.0",
"@ng-idle/core": "^16.0.0",
"@ng-idle/keepalive": "^16.0.0",
"@ngx-translate/core": "^16.0.4",
"@ngx-translate/http-loader": "^16.0.1",
"@npmcli/package-json": "^6.1.1",
"@swimlane/ngx-charts": "^22.0.0-alpha.1",
"angular-oauth2-oidc": "^19.0.0",
"echarts": "^5.6.0",
"lodash-es": "^4.17.21",
"moment": "^2.30.1",
"monaco-editor": "^0.52.2",
"nanoid": "^5.1.5",
"ngx-echarts": "^19.0.0",
"rxjs": "^7.8.2",
"sass": "^1.86.3",
"tslib": "^2.8.1",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-eslint/builder": "19.5.0",
"@angular-eslint/eslint-plugin": "19.5.0",
"@angular-eslint/eslint-plugin-template": "19.5.0",
"@angular-eslint/schematics": "19.5.0",
"@angular-eslint/template-parser": "19.5.0",
"@angular/build": "^19.2.18",
"@angular/cli": "^20.3.16",
"@angular/compiler-cli": "^19.2.18",
"@types/jasmine": "^5.1.7",
"@types/jest": "^29.5.14",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.14.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^9.1.7",
"jasmine-core": "^5.6.0",
"jasmine-spec-reporter": "^7.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-preset-angular": "^14.5.5",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^15.5.1",
"lodash": "^4.17.21",
"prettier": "3.5.3",
"pretty-quick": "^4.1.1",
"resize-observer-polyfill": "^1.5.1",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "5.8.3",
"uuid": "^11.1.0"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix"
]
},
"jestSonar": {
"reportPath": "reports/jest-sonar-reporter",
"reportFile": "test-report.xml",
"indent": 4
}
}