-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 883 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 883 Bytes
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
{
"name": "htmx",
"module": "src/index.tsx",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"bun run --watch src/index.tsx\" \"bun build --watch src/public/*.[jt]s --outdir=public\" \"bunx tailwindcss -i src/public/styles.css -o public/styles.css --watch\"",
"deploy": "bun build src/public/*.[jt]s --outdir=public && bunx tailwindcss -i src/public/styles.css -o public/styles.css && fly deploy"
},
"dependencies": {
"@elysiajs/html": "^0.7.0",
"@elysiajs/static": "^0.7.1",
"@elysiajs/swagger": "^0.7.2",
"@kitajs/html": "^3.0.0",
"@kitajs/ts-html-plugin": "^1.0.2",
"concurrently": "^8.2.1",
"elysia": "latest"
},
"devDependencies": {
"bun-types": "latest",
"tailwindcss": "^3.3.3"
},
"prettier": {
"bracketSameLine": true,
"tabWidth": 2
}
}