-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.16 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "analogjs-blog",
"version": "1.8.9",
"author": "Elanna Grossman <elanna.grossman@gmail.com>",
"license": "MIT",
"type": "module",
"private": true,
"engines": {
"node": ">=20.11.1"
},
"scripts": {
"ng": "ng",
"dev": "ng serve",
"start": "npm run dev",
"build": "ng build",
"build-ci": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test-ci": "vitest run --coverage",
"coverage": "vitest run --coverage",
"lint": "ng lint",
"prestart": "npm run svg",
"prebuild": "npm run svg",
"svg": "svg-generator"
},
"svgGenerator": {
"outputPath": "./src/app/svg",
"srcPath": "./src/assets/svg",
"svgoConfig": {
"plugins": [
"removeDimensions",
"cleanupAttrs",
{
"name": "convertColors",
"params": {
"currentColor": true
}
}
]
}
},
"dependencies": {
"@analogjs/content": "^2.0.3",
"@analogjs/router": "^2.0.3",
"@angular/animations": "^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-browser-dynamic": "^20.1.4",
"@angular/platform-server": "^20.1.4",
"@angular/router": "^20.1.4",
"@angular/ssr": "^20.1.4",
"@ngneat/svg-icon": "^7.1.6",
"@tailwindcss/vite": "^4.1.4",
"dompurify": "^3.2.6",
"feed": "^5.0.1",
"front-matter": "^4.0.2",
"hastscript": "^9.0.1",
"isomorphic-dompurify": "^2.25.0",
"marked": "^15.0.7",
"marked-gfm-heading-id": "^4.1.1",
"marked-highlight": "^2.2.1",
"marked-mangle": "^1.1.10",
"marked-shiki": "^1.1.0",
"postcss": "^8.5.3",
"rxjs": "~7.8.0",
"shiki": "^1.6.1",
"tailwindcss": "^4.1.4",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@analogjs/platform": "^2.0.3",
"@analogjs/vite-plugin-angular": "^2.0.3",
"@analogjs/vitest-angular": "^2.0.3",
"@angular-eslint/builder": "^19.0.0",
"@angular-eslint/eslint-plugin": "^19.0.0",
"@angular-eslint/eslint-plugin-template": "^19.0.0",
"@angular-eslint/schematics": "^19.0.0",
"@angular-eslint/template-parser": "^19.0.0",
"@angular/build": "^20.1.4",
"@angular/cli": "^20.1.4",
"@angular/compiler-cli": "^20.1.4",
"@ngneat/svg-generator": "^7.0.3",
"@tailwindcss/typography": "^0.5.16",
"@types/dompurify": "^3.2.0",
"@typescript-eslint/eslint-plugin": "8.39.0",
"@typescript-eslint/parser": "8.39.0",
"@vitest/coverage-istanbul": "^3.1.4",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jsdom": "^22.0.0",
"lint-staged": "^16.0.0",
"ng-mocks": "^14.13.0",
"pretty-quick": "^4.1.1",
"typescript": "~5.8.0",
"vite": "^6.0.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,css,html}": [
"pretty-quick --staged",
"eslint --fix",
"git add"
]
}
}