turboci-admin/package.json
2026-03-04 14:21:07 +00:00

39 lines
1.1 KiB
JSON

{
"name": "turboci-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"pm2:dev": "pm2 start --name turboci-web 'bunx next dev' && pm2 start --name turboci-cron 'bun --watch src/cron/index.ts'",
"pm2:start": "pm2 start --name turboci-web 'bunx next start' && pm2 start --name turboci-cron 'bun src/cron/index.ts'",
"pm2:kill": "pm2 kill",
"build": "next build"
},
"dependencies": {
"@moduletrace/bun-sqlite": "^1.0.5",
"@moduletrace/datasquirel": "^5.7.57",
"@radix-ui/themes": "^3.3.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bun": "^1.3.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4",
"typescript": "^5"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
],
"module": "index.ts",
"type": "module"
}