generated from es-js/crear-terminal-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 793 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
{
"name": "@es-js/crear-terminal-app",
"type": "module",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "vite --host",
"dev:css": "tailwindcss -i api/app.css -o ./static/app.css --watch",
"build": "vite build --ssr --mode=production && pnpm run build:css && pnpm run build:move-static",
"build:css": "tailwindcss -i api/app.css -o ./static/app.css --minify",
"build:move-static": "mkdir -p dist/cliente && cp -r static dist/cliente",
"serve": "vite preview"
},
"devDependencies": {
"@es-js/vite-plugin-esjs": "^0.0.14",
"@hono/vite-dev-server": "^0.3.0",
"@supabase/supabase-js": "^2.38.5",
"hono": "3.9.2",
"prettier": "^3.1.0",
"prettier-plugin-esjs": "^0.0.1",
"tailwindcss": "^3.3.5",
"vite": "^5.0.0"
}
}