-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.08 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.08 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
{
"name": "angular-hub",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prepare": "husky",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"serve:ssr:angular-hub": "node dist/angular-hub/server/server.mjs",
"i18n:extract": "ng extract-i18n --format json",
"i18n:merge-translations": "node scripts/merge-translations.mjs",
"i18n:validate-no-empty-translations": "npm run i18n:extract && npm run i18n:merge-translations && node scripts/validate-no-empty-translations.mjs"
},
"private": true,
"prettier": {
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"dependencies": {
"@angular/animations": "^20.1.4",
"@angular/cdk": "^20.1.4",
"@angular/common": "^20.1.4",
"@angular/compiler": "^20.1.4",
"@angular/core": "^20.1.4",
"@angular/forms": "^20.1.4",
"@angular/platform-browser": "^20.1.4",
"@angular/platform-server": "^20.1.4",
"@angular/router": "^20.1.4",
"@angular/ssr": "^20.1.4",
"@elysiajs/static": "^1.3.0",
"@primeuix/themes": "^1.2.1",
"@tailwindcss/postcss": "^4.1.11",
"@types/express": "^5.0.3",
"@types/node": "^24.0.10",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"elysia": "^1.3.5",
"express": "^5.1.0",
"node": "^22.17.0",
"postcss": "^8.5.6",
"primeicons": "^7.0.0",
"primeng": "20.0.0-rc.1",
"prismjs": "^1.29.0",
"rxjs": "~7.8.0",
"tailwindcss": "^4.1.11",
"tailwindcss-primeui": "^0.6.1",
"tslib": "^2.3.0",
"valibot": "^0.35.0"
},
"devDependencies": {
"@angular/build": "^20.1.4",
"@angular/cli": "^20.1.4",
"@angular/compiler-cli": "^20.1.4",
"@angular/language-service": "20.1.4",
"@angular/localize": "20.1.4",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/cors": "^2.8.19",
"husky": "^9.0.11",
"lint-staged": "^15.1.0",
"prettier": "3.3.0",
"typescript": "~5.8.2"
}
}