-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 884 Bytes
/
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
{
"name": "hina",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "run-p dev:*",
"dev:wrangler": "wrangler pages dev client --live-reload --port 3000",
"dev:esbuild": "esbuild --bundle src/server.ts --format=esm --watch --outfile=client/_worker.js",
"style": "tailwindcss -i ./builder.css -o ./client/pub/styles.css --watch --minify",
"build": "esbuild --bundle src/server.ts --format=esm --outfile=client/_worker.js",
"deploy": "wrangler pages publish client"
},
"dependencies": {
"@planetscale/database": "latest",
"jose": "latest",
"nanoid": "latest",
"ua-parser-js": "^1.0.37"
},
"devDependencies": {
"@cloudflare/workers-types": "latest",
"@tailwindcss/forms": "latest",
"@tailwindcss/typography": "latest",
"daisyui": "latest",
"esbuild": "latest",
"npm-run-all": "latest",
"tailwindcss": "latest",
"wrangler": "latest"
}
}