-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 3.12 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
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
{
"name": "analogjs-blog",
"version": "1.8.7",
"author": "Elanna Grossman <[email protected]>",
"license": "MIT",
"type": "module",
"private": true,
"engines": {
"node": ">=18.19.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": "^1.6.1",
"@analogjs/router": "^1.6.1",
"@angular/animations": "^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",
"@ngneat/svg-icon": "^7.1.0",
"dompurify": "^3.0.6",
"feed": "^4.2.2",
"front-matter": "^4.0.2",
"isomorphic-dompurify": "^2.0.0",
"marked": "^5.0.2",
"marked-gfm-heading-id": "^3.1.0",
"marked-highlight": "^2.0.1",
"marked-mangle": "^1.1.7",
"prismjs": "^1.29.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@analogjs/platform": "^1.6.1",
"@analogjs/vite-plugin-angular": "^1.6.1",
"@analogjs/vitest-angular": "^1.6.1",
"@angular-devkit/build-angular": "^18.1.0",
"@angular-eslint/builder": "^18.0.0",
"@angular-eslint/eslint-plugin": "^18.0.0",
"@angular-eslint/eslint-plugin-template": "^18.0.0",
"@angular-eslint/schematics": "^18.0.0",
"@angular-eslint/template-parser": "^18.0.0",
"@angular/cli": "^18.0.0",
"@angular/compiler-cli": "^18.0.0",
"@ngneat/svg-generator": "^7.0.2",
"@tailwindcss/typography": "^0.5.10",
"@types/dompurify": "^3.0.5",
"@types/marked": "^5.0.2",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"@vitest/coverage-istanbul": "^1.6.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jsdom": "^22.0.0",
"lint-staged": "^15.2.9",
"ng-mocks": "^14.13.0",
"postcss": "^8.4.21",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.3.1",
"typescript": "~5.4.2",
"vite": "~5.2.14",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^1.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,css,html}": [
"pretty-quick --staged",
"eslint --fix",
"git add"
]
}
}