-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.95 KB
/
package.json
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
{
"name": "angular-love-2024-advent",
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=18.19.1"
},
"scripts": {
"ng": "ng",
"dev": "ng serve",
"start": "pnpm run dev",
"build": "node prebuild.mjs && ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"preview": "pnpm run build && wrangler pages dev",
"deploy": "pnpm run build && wrangler pages deploy",
"cf-typegen": "wrangler types"
},
"private": true,
"dependencies": {
"@analogjs/content": "^1.9.4",
"@analogjs/router": "^1.9.4",
"@angular/animations": "^18.0.0",
"@angular/build": "^18.0.0",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/forms": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/platform-server": "^18.0.0",
"@angular/router": "^18.0.0",
"@ng-icons/core": "^29.10.0",
"@ng-icons/lucide": "^29.10.0",
"@ng-icons/simple-icons": "^29.10.0",
"front-matter": "^4.0.2",
"marked": "^5.0.2",
"marked-gfm-heading-id": "^3.1.0",
"marked-highlight": "^2.0.1",
"marked-mangle": "^1.1.7",
"marked-shiki": "^1.1.1",
"prismjs": "^1.29.0",
"rxjs": "~7.8.0",
"shiki": "^1.24.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@analogjs/platform": "^1.9.4",
"@analogjs/vite-plugin-angular": "^1.9.4",
"@analogjs/vitest-angular": "^1.9.4",
"@angular/cli": "^18.0.0",
"@angular/compiler-cli": "^18.0.0",
"@cloudflare/workers-types": "^4.20241127.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"autoprefixer": "^10.4.14",
"nitropack": "^2.10.4",
"postcss": "^8.4.21",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.3.1",
"typescript": "~5.4.2",
"vite": "^5.0.0",
"wrangler": "^3.91.0"
}
}