-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.37 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
{
"name": "sfeir-school-angular",
"version": "20.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"client": "nx serve",
"test": "nx run-many --exclude=docs --target=test -p ",
"client:build": "nx build",
"client:test": "nx run-many --target=test --exclude=docs --parallel=50%",
"start:prez": "nx serve docs",
"server:start": "nx serve server-express --no-inspect",
"test:ci": "nx affected --exclude=docs --target=test --parallel=10",
"lint:ci": "nx affected --exclude=docs --target=lint --parallel=10",
"build:ci": "nx affected --exclude=docs --target=build --parallel=10",
"lint:all": "nx run-many --target=lint --exclude=docs --all --parallel=5 --fix",
"test:all": "nx run-many --target=test --exclude=docs --all --parallel=5",
"migrate-nx": "nx migrate latest",
"run-migration": "nx migrate --run-migrations=migrations.json"
},
"private": true,
"dependencies": {
"@angular/animations": "21.2.9",
"@angular/cdk": "21.2.9",
"@angular/common": "21.2.9",
"@angular/compiler": "21.2.9",
"@angular/core": "21.2.9",
"@angular/forms": "21.2.9",
"@angular/material": "21.2.9",
"@angular/platform-browser": "21.2.9",
"@angular/platform-browser-dynamic": "21.2.9",
"@angular/router": "21.2.9",
"@ngneat/elf": "^2.3.0",
"@ngneat/elf-entities": "^4.4.2",
"@ngrx/store": "21.0.0",
"@ngxs/store": "^21.0.0",
"cors": "^2.8.5",
"express": "4.21.2",
"rxjs": "7.8.0",
"sfeir-school-theme": "4.0.0-rc-15",
"tslib": "^2.3.0",
"underscore": "^1.13.2",
"zone.js": "0.16.0"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "2.1.3",
"@analogjs/vitest-angular": "2.1.3",
"@angular-eslint/eslint-plugin": "21.4.0",
"@angular-eslint/eslint-plugin-template": "21.4.0",
"@angular-eslint/template-parser": "21.4.0",
"@angular/build": "21.2.9",
"@angular/cli": "21.2.16",
"@angular/compiler-cli": "21.2.9",
"@angular/language-service": "21.2.9",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@ngrx/store-devtools": "21.0.0",
"@nx/angular": "23.0.0",
"@nx/cypress": "23.0.0",
"@nx/eslint": "23.0.0",
"@nx/eslint-plugin": "23.0.0",
"@nx/express": "23.0.0",
"@nx/js": "23.0.0",
"@nx/node": "23.0.0",
"@nx/vite": "23.0.0",
"@nx/vitest": "23.0.0",
"@nx/web": "23.0.0",
"@nx/webpack": "^23.0.0",
"@nx/workspace": "23.0.0",
"@oxc-project/runtime": "^0.137.0",
"@stylistic/eslint-plugin": "^3.1.0",
"@testing-library/angular": "^18.1.1",
"@types/express": "4.17.21",
"@types/node": "22.14.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@typescript-eslint/utils": "^8.40.0",
"@vitest/coverage-v8": "4.0.9",
"@vitest/ui": "4.0.9",
"angular-eslint": "^21.4.0",
"chokidar-cli": "^3.0.0",
"cpx": "^1.5.0",
"eslint": "10.5.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-cypress": "2.14.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jiti": "2.4.2",
"jsdom": "~22.1.0",
"live-server": "^1.2.1",
"nx": "23.0.0",
"nx-cloud": "19.1.3",
"parallelshell": "3.0.1",
"prettier": "3.6.0",
"sass": "^1.19.0",
"shelljs": "^0.8.5",
"ts-node": "^10.9.2",
"typescript": "5.9.3",
"vite": "8.0.9",
"vitest": "4.0.9",
"webpack-cli": "^7.0.3"
}
}