29 lines
885 B
JSON
29 lines
885 B
JSON
|
|
{
|
||
|
|
"name": "vinterliste",
|
||
|
|
"version": "0.1.0",
|
||
|
|
"description": "End-to-end encrypted winter activity list",
|
||
|
|
"private": true,
|
||
|
|
"type": "module",
|
||
|
|
"scripts": {
|
||
|
|
"dev:server": "bun run --hot server/index.ts",
|
||
|
|
"dev:frontend": "vite --config frontend/vite.config.ts",
|
||
|
|
"build:frontend": "vite build --config frontend/vite.config.ts",
|
||
|
|
"start": "NODE_ENV=production bun run server/index.ts",
|
||
|
|
"test": "bun test",
|
||
|
|
"typecheck": "tsc --noEmit && tsc --noEmit -p frontend/tsconfig.json"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"hono": "^4.6.0",
|
||
|
|
"libsodium-wrappers-sumo": "^0.7.15"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
||
|
|
"@tsconfig/svelte": "^5.0.4",
|
||
|
|
"@types/bun": "^1.1.0",
|
||
|
|
"@types/libsodium-wrappers-sumo": "^0.7.8",
|
||
|
|
"svelte": "^5.0.0",
|
||
|
|
"svelte-check": "^4.0.0",
|
||
|
|
"typescript": "^5.6.0",
|
||
|
|
"vite": "^6.0.0"
|
||
|
|
}
|
||
|
|
}
|