-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.76 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
{
"name": "@devclub/site",
"version": "3.0.0",
"description": "Devclub site platform: devclub.eu & devclub.ee",
"private": true,
"homepage": "https://github.com/devclub/site",
"license": "MIT",
"engines": {
"node": ">=24.15.0"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:eu": "ng serve",
"start:ee": "ng serve --configuration development-ee",
"build": "ng build --configuration production-eu",
"build:eu": "ng build --configuration production-eu",
"build:ee": "ng build --configuration production-ee",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:watch": "ng test",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:report": "playwright show-report",
"lint": "ng lint"
},
"packageManager": "npm@11.13.0",
"dependencies": {
"@angular/animations": "22.0.3",
"@angular/cdk": "22.0.2",
"@angular/common": "22.0.3",
"@angular/compiler": "22.0.3",
"@angular/core": "22.0.3",
"@angular/forms": "22.0.3",
"@angular/platform-browser": "22.0.3",
"@angular/router": "22.0.3",
"@fortawesome/angular-fontawesome": "5.0.0",
"@fortawesome/fontawesome-svg-core": "7.2.0",
"@fortawesome/free-brands-svg-icons": "7.2.0",
"@fortawesome/free-solid-svg-icons": "7.2.0",
"bootstrap": "5.3.8",
"date-fns": "4.4.0",
"rxjs": "7.8.2",
"tslib": "2.8.1",
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular/build": "22.0.4",
"@angular/cli": "22.0.4",
"@angular/compiler-cli": "22.0.3",
"@playwright/test": "1.61.1",
"jsdom": "29.1.1",
"prettier": "3.8.4",
"typescript": "6.0.3",
"vitest": "4.1.9"
},
"overrides": {
"@babel/core": "7.29.6",
"esbuild": "0.28.1"
}
}