-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.75 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.75 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
{
"name": "ericpoe.com",
"description": "Code and content for ericpoe.com",
"license": "MIT",
"author": "Eric Poe <eric.poe@gmail.com>",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "astro build",
"check": "astro check",
"dev": "astro dev",
"format": "prettier --write '**/*.{js,jsx,ts,astro,md,mdx}'",
"lint": "eslint .",
"post:new": "node scripts/new-post.mjs",
"pretest:e2e": "node scripts/ensure-playwright-browsers.mjs",
"pretest:e2e:ui": "node scripts/ensure-playwright-browsers.mjs",
"preview": "astro preview",
"test": "npm run test:unit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:unit": "vitest run",
"test:unit:watch": "vitest watch"
},
"dependencies": {
"@astrojs/rss": "^4.0.18",
"react": "^19.0.0",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
"reading-time": "^1.5.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/mdx": "^5.0.3",
"@astrojs/react": "^5.0.3",
"@astrojs/sitemap": "^3.7.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.2",
"@typescript-eslint/parser": "^8.59.0",
"astro": "^6.1.8",
"astro-eslint-parser": "^1.4.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-prettier": "^5.5.5",
"jsdom": "^29.0.2",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^4.2.1",
"typescript": "^6.0.3",
"vitest": "^4.1.3"
}
}