-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.16 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": "techsquidtv.com",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "pnpm run build-setup && astro build && pnpm run kill-assets",
"preview": "astro preview",
"astro": "astro",
"lint:ci": "eslint --ext .astro,.js,.jsx,.ts,.tsx .",
"lint": "eslint --ext .astro,.js,.jsx,.ts,.tsx . --fix",
"format:ci": "prettier --check .",
"format": "prettier --write .",
"test": "vitest run",
"build-setup": "pnpm run serve-assets & pnpm run wait-for-assets",
"serve-assets": "serve -p 3001 --no-port-switching ./src/images",
"wait-for-assets": "wait-on -t 5000 http://localhost:3001/opengraph/tstv-og-bg.png",
"kill-assets": "kill-port 3001 || true"
},
"dependencies": {
"@astrojs/check": "^0.3.4",
"@astrojs/mdx": "^2.3.1",
"@astrojs/netlify": "^5.5.2",
"@astrojs/react": "^3.6.2",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@expressive-code/plugin-collapsible-sections": "^0.31.0",
"@fontsource-variable/inter": "^5.0.21",
"@fontsource-variable/outfit": "^5.0.15",
"@iconify-json/fluent": "^1.2.1",
"@sentry/astro": "^7.119.0",
"@spotlightjs/astro": "^1.0.20",
"@tailwindcss/container-queries": "^0.1.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"astro": "^4.15.4",
"astro-embed": "^0.6.2",
"astro-expressive-code": "^0.29.4",
"astro-icon": "^1.1.1",
"date-fns": "^2.30.0",
"fast-xml-parser": "^4.5.0",
"gray-matter": "^4.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"satori": "^0.10.14",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.2"
},
"devDependencies": {
"@jasikpark/astro-svg-loader": "^0.2.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.29.1",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.12.3",
"serve": "^14.2.3",
"vitest": "^0.34.6",
"wait-on": "^7.2.0"
}
}