-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.59 KB
/
package.json
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
{
"name": "tcr",
"version": "1.4.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-prod": "ng build --output-path ../src/http/static/webapp --configuration production --extract-licenses false",
"watch": "ng build --watch --configuration development",
"test": "ng test --source-map=false --browsers=ChromeHeadless --watch=false",
"coverage": "ng test --source-map=true --browsers=ChromeHeadless --watch=false --code-coverage",
"test-watch": "ng test",
"lint": "ng lint",
"clean": "rm -rf node_modules ../src/http/static/webapp",
"reinstall": "npm run clean && npm install",
"rebuild": "npm run reinstall && npm run build",
"rebuild-prod": "npm run reinstall && npm run build-prod"
},
"private": true,
"engines": {
"npm": ">=10.8.1",
"node": ">=22.5.1"
},
"dependencies": {
"@angular/animations": "^19.1.2",
"@angular/common": "^19.1.2",
"@angular/compiler": "^19.1.2",
"@angular/core": "^19.1.2",
"@angular/forms": "^19.1.2",
"@angular/platform-browser": "^19.1.2",
"@angular/platform-browser-dynamic": "^19.1.2",
"@angular/router": "^19.1.2",
"@fortawesome/angular-fontawesome": "^1.0.0",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@ng-bootstrap/ng-bootstrap": "^18.0.0",
"@popperjs/core": "^2.11.8",
"@xterm/addon-unicode11": "^0.8.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"ansicolor": "^2.0.3",
"bootstrap": "^5.3.3",
"font-awesome": "^4.7.0",
"ng-terminal": "^6.3.0",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.3",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "^19.1.3",
"@angular/compiler-cli": "^19.1.2",
"@angular/localize": "^19.1.2",
"@eslint/config-array": "^0.19.1",
"@eslint/object-schema": "^2.1.5",
"@types/jasmine": "~5.1.5",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"jasmine": "^5.5.0",
"jasmine-core": "~5.5.0",
"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",
"karma-junit-reporter": "^2.0.1",
"ng-mocks": "^14.13.2",
"typescript": "~5.7.3"
}
}