-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "short-link",
"module": "src/index.ts",
"version": "0.4.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"bun-types": "latest",
"daisyui": "latest",
"eslint": "latest",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"dev": "bun run tailwind:dev | bun run elxsia:dev",
"elxsia:dev": "bun --watch src/index.ts",
"prettier": "bunx prettier . --write",
"build": "bun run tailwind:build",
"start": "bun run src/index.ts",
"tailwind:build": "bunx tailwindcss -i ./src/style.css -o ./public/style.css --minify",
"tailwind:dev": "bunx tailwindcss -i ./src/style.css -o ./public/style.css --watch"
},
"type": "module",
"dependencies": {
"@elysiajs/html": "~0.7.0",
"@elysiajs/static": "~0.7.1",
"elysia": "~0.7.15",
"elysia-autoroutes": "~0.4.0",
"handlebars": "^4.7.8",
"htmx.org": "^1.9.6"
}
}