- Added Next.js 15 inventory management application - SQLite database with audit trail functionality - Item CRUD operations (Create, Read, Update, Delete) - Dedicated item detail pages with edit functionality - Complete change history tracking for all modifications - Responsive UI with Tailwind CSS (removed Shadcn UI for simplicity) - API routes for inventory management and audit logs - Clean navigation between list and detail views
33 lines
745 B
JSON
33 lines
745 B
JSON
{
|
|
"name": "inwentarz",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@radix-ui/react-label": "^2.1.7",
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"better-sqlite3": "^12.2.0",
|
|
"next": "15.4.5",
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0",
|
|
"sqlite3": "^5.1.7"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.4.5",
|
|
"tailwindcss": "^4",
|
|
"tw-animate-css": "^1.3.6",
|
|
"typescript": "^5"
|
|
}
|
|
}
|