This repository was archived by the owner on Aug 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.95 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.95 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
{
"name": "one-daily-blog",
"version": "5.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"dev": "ng serve -o",
"build": "ng build",
"build-prod": "ng build --configuration=production",
"watch": "ng build --watch",
"test": "ng test",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"e2e": "ng e2e",
"letsgo": "bun install --legacy-peer-deps && bun run build && bun run start",
"serve:ssr:one-daily-blog": "node dist/one-daily-blog/server/server.mjs"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.1.5",
"@angular/common": "^20.1.5",
"@angular/compiler": "^20.1.5",
"@angular/core": "^20.1.5",
"@angular/platform-browser": "^20.1.5",
"@angular/platform-browser-dynamic": "^20.1.5",
"@angular/platform-server": "^20.1.5",
"@angular/router": "^20.1.5",
"@angular/ssr": "^20.1.5",
"@fortawesome/angular-fontawesome": "^3.0.0",
"@fortawesome/free-brands-svg-icons": "^7.0.0",
"@fortawesome/free-regular-svg-icons": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"compression": "^1.8.1",
"dompurify": "^3.2.6",
"express": "^4.21.2",
"rxjs": "^7.8.2",
"striptags": "^3.2.0",
"tslib": "^2.8.1",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.1.5",
"@angular/cli": "^20.1.5",
"@angular/compiler-cli": "^20.1.5",
"@tailwindcss/postcss": "^4.1.11",
"@types/compression": "^1.8.1",
"@types/express": "^4.17.21",
"@types/node": "^24.2.1",
"angular-eslint": "20.1.1",
"autoprefixer": "^10.4.21",
"esbuild": "^0.25.8",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.11",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.3",
"typescript-eslint": "8.39.1"
}
}