- Node/Express/TypeScript API under /api/v1 with JWT auth (login, refresh, logout, /me) - Prisma schema: vendors, users, roles, products, categories, taxes, transactions - SQLite for local dev; Postgres via docker-compose for production - Full CRUD routes for vendors, users, categories, taxes, products with Zod validation and RBAC - Paginated list endpoints scoped per vendor; refresh token rotation - React/TypeScript admin SPA (Vite): login, protected routing, sidebar layout - Pages: Dashboard, Catalog (tabbed Products/Categories/Taxes), Users, Vendor Settings - Shared UI: Table, Modal, FormField, Btn, PageHeader components - Multi-stage Dockerfile; docker-compose with Postgres healthcheck - Seed script with demo vendor and owner account - INSTRUCTIONS.md, ROADMAP.md, .claude/launch.json for dev server config Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
49 lines
1.0 KiB
JSON
49 lines
1.0 KiB
JSON
{
|
|
"name": "react-router-dom",
|
|
"version": "6.30.3",
|
|
"description": "Declarative routing for React web applications",
|
|
"keywords": [
|
|
"react",
|
|
"router",
|
|
"route",
|
|
"routing",
|
|
"history",
|
|
"link"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/remix-run/react-router",
|
|
"directory": "packages/react-router-dom"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Remix Software <hello@remix.run>",
|
|
"sideEffects": false,
|
|
"main": "./dist/main.js",
|
|
"unpkg": "./dist/umd/react-router-dom.production.min.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"dependencies": {
|
|
"@remix-run/router": "1.23.2",
|
|
"react-router": "6.30.3"
|
|
},
|
|
"devDependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=16.8",
|
|
"react-dom": ">=16.8"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"CHANGELOG.md",
|
|
"LICENSE.md",
|
|
"README.md",
|
|
"server.d.ts",
|
|
"server.js",
|
|
"server.mjs"
|
|
],
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
}
|
|
} |