24 lines
684 B
JSON
24 lines
684 B
JSON
|
{
|
||
|
"name": "htmx",
|
||
|
"version": "1.0.0",
|
||
|
"description": "",
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||
|
"start": "node index.ts",
|
||
|
"dev": "pnpm run dev.nodemon # yes this is crazy to have nodemon execute tsx, but it's the only way I have found to get live reloading in TS/ESM/docker with Graphile Worker's way of loading tasks",
|
||
|
"dev.nodemon": "nodemon --ext ts --exec \"pnpm run dev.tsx\"",
|
||
|
"dev.tsx": "tsx ./app/index.ts"
|
||
|
},
|
||
|
"keywords": [],
|
||
|
"author": "",
|
||
|
"license": "Unlicense",
|
||
|
"dependencies": {
|
||
|
"fastify": "^4.28.1"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"nodemon": "^3.1.4",
|
||
|
"tsx": "^4.19.0"
|
||
|
}
|
||
|
}
|