-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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
{
"name": "masya",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev --port 3000",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"functions:dev": "astro build && wrangler pages dev ./dist --port=3000",
"pages:dev": "wrangler pages dev --compatibility-date=2023-12-06 -- astro dev",
"deploy": "astro build && wrangler pages deploy ./dist",
"deploy:prod": "astro build && wrangler pages deploy ./dist --branch master",
"format": "prettier --write .",
"wrangler": "wrangler",
"tail": "wrangler pages deployment tail"
},
"dependencies": {
"@astrojs/cloudflare": "^8.0.0",
"@astrojs/solid-js": "^3.0.2",
"@astrojs/tailwind": "^5.0.4",
"@clerk/backend": "^0.37.0",
"@clerk/clerk-js": "^4.68.1",
"@clerk/themes": "^1.7.9",
"@tanstack/solid-query": "^5.13.4",
"astro": "^4.0.7",
"clsx": "^2.1.0",
"cookie": "^0.6.0",
"highlight.js": "^11.9.0",
"ky": "^1.1.3",
"openai": "^4.20.1",
"solid-js": "^1.4.3",
"tailwindcss": "^3.0.24"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231121.0",
"@types/cookie": "^0.6.0",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.2",
"prettier-plugin-tailwindcss": "^0.5.9",
"solid-devtools": "^0.29.2",
"wrangler": "^3.21.0"
}
}