Uecko_ERP/modules/catalogs/package.json

55 lines
1.5 KiB
JSON
Raw Normal View History

2026-05-20 17:53:23 +00:00
{
"name": "@erp/catalogs",
"description": "Catalogs module",
2026-05-26 11:55:26 +00:00
"version": "0.6.7",
2026-05-20 17:53:23 +00:00
"private": true,
"type": "module",
"sideEffects": false,
"scripts": {
"typecheck": "tsc -p tsconfig.json --noEmit",
"check": "biome check .",
"lint": "biome lint .",
"clean": "rimraf .turbo node_modules dist"
},
"exports": {
2026-05-26 11:55:26 +00:00
".": "./src/common/index.ts",
"./common": "./src/common/index.ts",
"./api": "./src/api/index.ts",
"./client": "./src/web/manifest.ts",
2026-06-05 14:49:35 +00:00
"./client/*": "./src/web/*/index.ts"
2026-05-26 11:55:26 +00:00
},
"peerDependencies": {
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rimraf": "^6.1.3",
"typescript": "^6.0.2"
2026-05-20 17:53:23 +00:00
},
"dependencies": {
"@erp/auth": "workspace:*",
2026-05-26 11:55:26 +00:00
"@erp/core": "workspace:*",
"@repo/i18next": "workspace:*",
"@repo/rdx-criteria": "workspace:*",
2026-05-20 17:53:23 +00:00
"@repo/rdx-ddd": "workspace:*",
2026-05-26 11:55:26 +00:00
"@repo/rdx-logger": "workspace:*",
"@repo/rdx-ui": "workspace:*",
2026-05-20 17:53:23 +00:00
"@repo/rdx-utils": "workspace:*",
2026-05-26 11:55:26 +00:00
"@repo/shadcn-ui": "workspace:*",
"@tanstack/react-query": "^5.98.0",
2026-05-20 17:53:23 +00:00
"express": "^4.22.1",
2026-05-26 11:55:26 +00:00
"lucide-react": "^1.8.0",
"react-hook-form": "^7.72.1",
"react-i18next": "^17.0.2",
"react-router-dom": "^7.14.0",
2026-05-20 17:53:23 +00:00
"sequelize": "^6.37.8",
2026-05-26 11:55:26 +00:00
"use-debounce": "^10.1.1",
2026-05-20 17:53:23 +00:00
"zod": "^4.3.6"
}
}