-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·80 lines (80 loc) · 2.26 KB
/
package.json
File metadata and controls
executable file
·80 lines (80 loc) · 2.26 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
{
"name": "awesomehub-app",
"version": "3.0.0",
"private": true,
"author": "Mohamed Elkholy <mohatt@pm.me>",
"description": "Angular application for AwesomeHub",
"homepage": "https://github.com/awesomehub/app",
"repository": {
"type": "git",
"url": "https://github.com/awesomehub/app.git"
},
"engines": {
"node": ">=20.19.0",
"npm": ">=10"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "NG_BUILD_OPTIMIZE_CHUNKS=1 ng build",
"prestart": "node scripts/prebuild.mjs",
"prebuild": "node scripts/prebuild.mjs",
"postbuild": "npm run postbuild:stats && npm run postbuild:script",
"postbuild:stats": "esbuild-visualizer --metadata ./dist/stats.json --filename dist/stats.report.html",
"postbuild:script": "node scripts/postbuild.mjs",
"serve": "serve dist/browser",
"lint": "ng lint",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"format": "prettier --write ."
},
"keywords": [
"app",
"angular",
"github"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/awesomehub/app/issues"
},
"dependencies": {
"@angular/common": "^20.3.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/forms": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
"@angular/router": "^20.3.7",
"@ngrx/effects": "^20.1.0",
"@ngrx/operators": "^20.1.0",
"@ngrx/router-store": "^20.1.0",
"@ngrx/store": "^20.1.0",
"@ngrx/store-devtools": "^20.1.0",
"date-fns": "^4.1.0",
"material-design-lite": "^1.3.0",
"rxjs": "^7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^20.3.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
"@eslint/js": "^9.38.0",
"@netlify/angular-runtime": "^3.0.0",
"@netlify/plugin-lighthouse": "^6.0.3",
"@ngrx/eslint-plugin": "^20.1.0",
"@types/gtag.js": "^0.0.20",
"@types/node": "^20.19.22",
"angular-eslint": "^20.5.0",
"chalk": "^4.1.2",
"esbuild-visualizer": "^0.7.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"purgecss": "^7.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
},
"volta": {
"node": "20.19.5",
"npm": "10.8.2"
}
}