-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.84 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.84 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
{
"name": "atconf-astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"start": "node ./dist/server/entry.mjs",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"sync-schedule": "tsx scripts/sync-schedule.ts",
"test": "vitest run",
"test:visual": "playwright test",
"test:visual:ui": "playwright test --ui",
"test:visual:update": "playwright test --update-snapshots",
"test:visual:report": "playwright show-report"
},
"dependencies": {
"@ascorbic/bluesky-loader": "^0.1.0",
"@astro-community/astro-embed-bluesky": "^0.1.6",
"@astrojs/node": "^9.5.2",
"@astrojs/react": "^4.4.2",
"@atcute/bluesky-richtext-parser": "^2.1.1",
"@atproto/api": "^0.19.3",
"@atproto/identity": "^0.4.8",
"@fujocoded/atproto-badger": "^0.0.1",
"@fujocoded/authproto": "^0.2.1",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-popover": "^1.1.15",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/react-virtual": "^3.13.21",
"@types/papaparse": "^5.5.2",
"astro": "^5.16.4",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"h3-js": "^4.3.0",
"hls.js": "^1.6.15",
"lucide-react": "^0.556.0",
"marked": "^17.0.1",
"papaparse": "^5.5.3",
"plyr": "^3.8.4",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-hook-form": "^7.68.0",
"satori": "^0.25.0",
"sharp": "^0.34.5",
"slugify": "^1.6.6",
"tailwindcss": "^4.1.17",
"zod": "^3.25.76"
},
"devDependencies": {
"@clack/prompts": "^1.1.0",
"@playwright/test": "^1.58.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tsx": "^4.19.0",
"vitest": "^4.1.0"
}
}