-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.49 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
{
"name": "htmlshare",
"type": "module",
"version": "1.0.0",
"description": "A simple, fast HTML sharing tool built with Astro and Cloudflare",
"keywords": [
"html",
"sharing",
"astro",
"cloudflare",
"d1"
],
"author": "spsz831",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"dev:wrangler": "wrangler pages dev --compatibility-date=2023-06-07 dist",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"db:create": "npx wrangler d1 create htmlshare-db",
"db:migrate": "npx wrangler d1 execute htmlshare-db --file=./schema.sql",
"deploy": "npm run build && npx wrangler pages publish dist",
"setup": "npm run db:create && npm run db:migrate",
"deploy:full": "npm run setup && npm run build && npm run deploy",
"health-check": "curl -f https://htmlshare.top/api/health",
"clean": "rm -rf dist .astro node_modules/.cache .wrangler",
"reinstall": "rm -rf node_modules package-lock.json && npm install"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.12",
"@astrojs/sitemap": "^3.6.0",
"@astrojs/tailwind": "^5.1.0",
"@fontsource/inter": "^5.2.8",
"astro": "^5.16.2",
"crypto-js": "^4.2.0",
"pako": "^2.1.0",
"tailwindcss": "^3.4.0",
"tslib": "^2.8.1",
"web-vitals": "^5.1.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.0",
"@types/pako": "^2.0.3",
"nodemon": "^3.0.0",
"typescript": "^5.3.0",
"wrangler": "^3.25.0"
}
}