-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.01 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.01 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
{
"name": "danielle-blog",
"version": "5.0.0",
"private": false,
"type": "module",
"scripts": {
"astro": "astro",
"build": "npm run type-check && astro build",
"compress-images": "bash scripts/compress-images.sh",
"dev": "astro dev",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"preview": "astro preview",
"start": "astro dev",
"sync": "astro sync",
"test:e2e": "npm run build && playwright test",
"test:e2e:ui": "npm run build && playwright test --ui",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@astrojs/rss": "^4.0.18",
"@resvg/resvg-js": "^2.6.2",
"astro": "^5.18.1",
"fuse.js": "^7.3.0",
"github-slugger": "^2.0.0",
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"satori": "^0.26.0",
"typescript": "^6.0.3"
},
"devDependencies": {
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.7.2",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.59.1",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.4",
"@types/markdown-it": "^14.1.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/sanitize-html": "^2.16.1",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"astro-eslint-parser": "^1.4.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.5.0",
"markdown-it": "^14.1.1",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"sanitize-html": "^2.17.3",
"tailwindcss": "^4.2.4"
}
}