Files
pulsy/package.json
T

49 lines
1.3 KiB
JSON

{
"name": "pulse-clock",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "PULSE_SKIP_DB_BOOTSTRAP=1 next build",
"start": "next start",
"lint": "eslint",
"test": "node scripts/test-calculations.mjs",
"typecheck": "tsc --noEmit",
"check:dead": "knip",
"check:react": "react-doctor . --yes --offline",
"format": "prettier --write .",
"check:format": "prettier --check .",
"check": "npm run lint && npm run typecheck && npm run check:dead && npm run check:react && npm run check:format"
},
"dependencies": {
"@libsql/client": "^0.17.3",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.14.0",
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-webcam": "^7.2.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"daisyui": "^5.5.20",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"knip": "^6.14.1",
"prettier": "^3.8.3",
"react-doctor": "^0.1.6",
"tailwindcss": "^4",
"typescript": "^5"
},
"overrides": {
"postcss": "^8.5.14",
"esbuild": "^0.28.0"
}
}