-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.13 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.13 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
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
{
"name": "@ccssmnn/tilly",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"build:prod": "astro build",
"build:node": "ASTRO_ADAPTER=node astro build",
"preview": "astro preview --port 4322",
"preview:node": "ASTRO_ADAPTER=node dotenv -e .env -- astro preview --port 4322",
"check": "concurrently -n Astro,Prettier,ESLint \"astro check\" \"prettier --check .\" \"eslint . --ext .ts,.tsx,.js,.jsx,.astro\"",
"format": "prettier -w .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.astro",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx,.astro --fix",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"@ccssmnn/intl": "^0.1.1",
"@clerk/backend": "2.29.5",
"@clerk/clerk-react": "5.59.6",
"@hono/zod-validator": "^0.7.6",
"@hookform/resolvers": "^5.2.2",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-router": "^1.157.3",
"@tanstack/react-virtual": "^3.13.18",
"@vercel/config": "^0.0.26",
"ai": "^5.0.123",
"astro": "^5.16.15",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"hono": "^4.11.5",
"idb-keyval": "^6.2.2",
"jazz-tools": "^0.20.4",
"motion": "^12.29.0",
"nanoid": "^5.1.6",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-bootstrap-icons": "^1.11.6",
"react-dom": "19.2.3",
"react-easy-crop": "^5.5.6",
"react-hook-form": "^7.71.1",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"web-push": "^3.6.7",
"workbox-window": "^7.4.0",
"zod": "^4.3.6",
"zustand": "^5.0.10"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/node": "^9.5.2",
"@astrojs/react": "^4.4.2",
"@astrojs/ts-plugin": "^1.10.6",
"@astrojs/vercel": "^9.0.4",
"@clack/prompts": "^0.11.0",
"@eslint/js": "^9.39.2",
"@fontsource/inter": "^5.2.8",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-router-devtools": "^1.157.3",
"@tanstack/router-cli": "^1.157.3",
"@tanstack/router-plugin": "^1.157.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.19.7",
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3",
"@types/web-push": "^3.6.4",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@vite-pwa/astro": "^1.2.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/ui": "^4.0.18",
"babel-plugin-react-compiler": "^1.0.0",
"concurrently": "^9.2.1",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.1.0",
"jsdom": "^27.4.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"satori": "^0.19.1",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "5.9.3",
"vercel": "^50.5.0",
"vitest": "^4.0.18",
"workbox-precaching": "^7.4.0",
"workbox-routing": "^7.4.0",
"workbox-strategies": "^7.4.0"
}
}