-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
67
68
69
{
"name": "rick-and-morty-astroverse",
"type": "module",
"version": "0.1.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro build && wrangler pages dev",
"astro": "astro",
"deploy": "astro build && wranglers pages deploy",
"cf-typegen": "wrangler types",
"lint": "prettier --check . && eslint",
"format": "prettier --write ."
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/cloudflare": "^11.2.0",
"@astrojs/react": "^3.6.2",
"@astrojs/solid-js": "^4.4.2",
"@astrojs/svelte": "^5.7.2",
"@astrojs/tailwind": "^5.1.2",
"@astrojs/vue": "^4.5.2",
"@tanstack/react-query": "^5.59.19",
"@tanstack/react-query-devtools": "^5.59.19",
"@tanstack/solid-query": "^5.59.17",
"@tanstack/svelte-query": "^5.59.17",
"@tanstack/vue-query": "^5.59.17",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@yornaath/batshit": "^0.10.1",
"astro": "^4.16.9",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-external-links": "^3.0.0",
"rickmortyapi": "^2.3.0",
"solid-js": "^1.9.3",
"svelte": "^5.1.9",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vue": "^3.5.12"
},
"overrides": {
"@sveltejs/vite-plugin-svelte": "^4.0.0"
},
"patchedDependencies": {
"astro@4.16.9": "patches/astro@4.16.9.patch"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241106.0",
"@eslint/js": "^9.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-solid": "^0.14.3",
"eslint-plugin-svelte": "^2.46.0",
"eslint-plugin-vue": "^9.30.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.2.7",
"prettier-plugin-tailwindcss": "^0.6.8",
"typescript-eslint": "^8.13.0",
"wrangler": "^3.86.0"
}
}