-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.19 KB
/
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
30
31
32
33
34
{
"name": "hyperspan-example",
"version": "0.0.1",
"module": "src/hyperspan/html.ts",
"type": "module",
"scripts": {
"build:styles": "npm run clean:styles && npx tailwindcss -i ./app/styles/globals.css -o ./public/_hs/css/styles-$(date \"+%Y%m%d%H%M%S\").css --minify",
"build:styles:dev": "npm run clean:styles && npx tailwindcss -i ./app/styles/globals.css -o ./public/_hs/css/styles-$(date \"+%Y%m%d%H%M%S\").css --watch",
"clean:styles": "rm ./public/styles-*.css 2> /dev/null || true && rm ./public/_hs/css/styles-*.css 2> /dev/null || true",
"dev": "npm run build:styles && PORT=3005 npm run --hot app/server.ts",
"start": "npm run build:styles && npm run app/server.ts",
"test": "npm test"
},
"devDependencies": {
"@types/escape-html": "^1.0.4",
"bun-types": "latest",
"prettier": "^3.2.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@fastify/deepmerge": "^2.0.0",
"daisyui": "^4.10.2",
"escape-html": "^1.0.3",
"hono": "^4.2.5",
"isbot": "^5.1.17",
"mixin-deep": "^2.0.1",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.1",
"trek-middleware": "^1.2.0",
"trek-router": "^1.2.0"
}
}