website/package.json

24 lines
651 B
JSON
Raw Normal View History

2024-06-09 07:22:05 +00:00
{
"name": "website",
"module": "index.ts",
"type": "module",
"devDependencies": {
2025-01-03 08:23:38 +00:00
"@types/nunjucks": "3.2.6",
"@types/express": "5.0.0"
2024-06-09 07:22:05 +00:00
},
"peerDependencies": {
2025-01-03 08:45:42 +00:00
"typescript": "5.7.2"
2024-06-09 07:22:05 +00:00
},
"dependencies": {
2025-01-03 08:23:38 +00:00
"express": "4.21.2",
"nunjucks": "3.2.4"
2024-07-05 13:22:31 +00:00
},
"scripts": {
"build": "tsc -p .",
2024-07-07 11:13:07 +00:00
"start": "NODE_PATH=./dist node dist/index.js",
"buildandpush": "docker buildx build --push --platform=linux/amd64,linux/arm64 -t git.fai.st/bizcochito/bizcochito.onion .",
2024-07-07 11:24:43 +00:00
"deploy": "npm run buildandpush && sleep 3 && kubectl rollout restart deploy/web -n web",
"dev": "npm run build && npm run start"
2024-06-09 07:22:05 +00:00
}
}