bizcochito.onion/package.json

24 lines
658 B
JSON
Raw Normal View History

2024-06-09 07:22:05 +00:00
{
"name": "website",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/nunjucks": "^3.2.6",
"@types/express": "^4.17.21"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"express": "^4.19.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
}
}