-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.88 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
{
"name": "cube-trainer",
"private": true,
"author": "Bernhard F. Brodowsky",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Lykos/cube_trainer.git"
},
"engines": {
"node": "22.x",
"npm": "10.x"
},
"version": "0.0.0",
"scripts": {
"ng": "npx -p @angular/cli ng",
"start": "npx -p @angular/cli ng serve",
"build": "npx -p @angular/cli ng build --configuration production",
"build_development": "npx -p @angular/cli ng build --configuration development",
"build_e2e": "npx -p @angular/cli ng build --configuration e2e",
"watch": "npx -p @angular/cli ng build --watch --configuration development",
"test": "npx -p @angular/cli ng test",
"test_ci": "npx -p @angular/cli ng test --karma-config client/karma-ci.conf.js",
"lint": "npx -p @angular/cli ng lint"
},
"dependencies": {
"@angular/animations": "^19.0.5",
"@angular/cdk": "^19.0.4",
"@angular/common": "^19.0.5",
"@angular/compiler": "^19.0.5",
"@angular/core": "^19.0.5",
"@angular/forms": "^19.0.5",
"@angular/material": "^19.0.4",
"@angular/platform-browser": "^19.0.5",
"@angular/platform-browser-dynamic": "^19.0.5",
"@angular/router": "^19.0.5",
"@ngrx/component-store": "^19.0.0",
"@ngrx/effects": "^19.0.0",
"@ngrx/entity": "^19.0.0",
"@ngrx/operators": "^19.0.0",
"@ngrx/router-store": "^19.0.0",
"@ngrx/store": "^19.0.0",
"@ngrx/store-devtools": "^19.0.0",
"@rxweb/reactive-form-validators": "^13.0.0",
"@rails/actioncable": "^8.0.0",
"angular-csv-ext": "^1.0.5",
"cubing": "^0.53.8",
"file-saver": "^2.0.5",
"ngx-cookie-service": "^19.0.0",
"ngx-filesaver": "^19.0.0",
"rxjs": "^7.8.1",
"tslib": "^2.3.0",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.6",
"@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.0.6",
"@angular/compiler-cli": "^19.0.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@ngrx/schematics": "^19.0.0",
"@types/chai": "^5.0.0",
"@types/file-saver": "^2.0.5",
"@types/jasmine": "^5.1.5",
"@types/node": "^22.10.1",
"@types/rails__actioncable": "^6.1.9",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.17.0",
"angular-http-server": "^1.11.1",
"chai": "^5.1.0",
"eslint": "^9.16.0",
"jasmine-core": "^5.4.0",
"karma": "^6.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.1.0",
"karma-jasmine": "^5.0.1",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-mocha": "^2.0.1",
"mocha": "^11.0.1",
"typescript": "^5.0.4"
}
}