-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.22 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
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
107
108
{
"name": "jasper-ui",
"version": "1.3.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production --source-map",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"e2e": "ng e2e",
"cy:open": "(cd cypress; docker compose pull && docker compose up --build -d) && cypress open && (cd cypress; docker compose down)",
"cy:ci": "docker compose --profile ci -f 'cypress/docker-compose.yaml' up --build --exit-code-from cypress"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.2",
"@angular/cdk": "^19.1.1",
"@angular/common": "^19.1.2",
"@angular/compiler": "^19.1.2",
"@angular/core": "^19.1.2",
"@angular/forms": "^19.1.2",
"@angular/localize": "^19.1.2",
"@angular/platform-browser": "^19.1.2",
"@angular/platform-browser-dynamic": "^19.1.2",
"@angular/router": "^19.1.2",
"@angular/service-worker": "^19.1.2",
"@ngx-formly/core": "^6.3.12",
"@stomp/rx-stomp": "^2.0.0",
"chess.js": "^1.0.0",
"clipboard": "^2.0.11",
"css-flatten": "^2.0.0",
"d3": "^7.9.0",
"europa": "^6.0.0",
"europa-core": "^6.0.0",
"file-saver": "^2.0.5",
"globalthis": "^1.0.4",
"hammerjs": "^2.0.8",
"handlebars": "^4.7.8",
"he": "^1.2.0",
"hls.js": "^1.5.20",
"jsqr": "^1.4.0",
"jszip": "^3.10.1",
"jtd": "^0.1.1",
"katex": "^0.16.21",
"lodash-es": "^4.17.21",
"luxon": "^3.5.0",
"marked": "^15.0.6",
"mobx": "^6.13.5",
"mobx-angular": "^4.8.0",
"monaco-editor": "^0.50.0",
"ngx-markdown": "^19.0.0",
"ngx-monaco-editor": "^12.0.0",
"qrcode": "^1.5.4",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"uuid": "^11.0.5",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.2",
"@angular/cli": "^19.1.2",
"@angular/compiler-cli": "^19.1.2",
"@cypress/schematic": "^3.0.0",
"@ngx-formly/schematics": "^6.3.12",
"@types/chess.js": "^0.13.7",
"@types/d3": "^7.4.3",
"@types/file-saver": "^2.0.7",
"@types/hammerjs": "^2.0.46",
"@types/he": "^1.2.3",
"@types/jasmine": "~5.1.5",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.4.2",
"@types/qrcode": "^1.5.5",
"@types/uuid": "^10.0.0",
"cypress": "^14.0.0",
"cypress-mochawesome-reporter": "^3.8.2",
"cypress-real-events": "^1.14.0",
"jasmine-core": "~5.5.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-html-reporter": "^0.2.7",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-junit-reporter": "^2.0.1",
"raw-loader": "^4.0.2",
"typescript": "~5.5.4"
},
"overrides": {
"@angular/common": "$@angular/common",
"@angular/core": "$@angular/core",
"@angular/cdk": "$@angular/cdk",
"@angular/platform-browser": "$@angular/platform-browser",
"zone.js": "$zone.js",
"katex": "$katex",
"marked": "$marked",
"monaco-editor": "$monaco-editor",
"d3": "$d3",
"uuid": "$uuid",
"cypress": "$cypress"
},
"browser": {
"fs": false,
"os": false,
"path": false
}
}