portal/package.json

30 lines
724 B
JSON

{
"name": "portal",
"type": "module",
"version": "1.0.0",
"description": "https://blackportaldetroit.com",
"main": "index.js",
"scripts": {
"build": "tsc screen.ts",
"deploy": "npm run build && rsync -avx rsync -a --exclude-from='exclude.txt' ./ grace@listener.local:portal"
},
"repository": {
"type": "git",
"url": "git@git.featherboaz.com:boazsender/portal.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.5.0",
"raspberrypi-liquid-crystal": "^1.20.0"
},
"devDependencies": {
"@types/node": "^22.13.14",
"prisma": "^6.5.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}