Uecko_ERP/modules/supplier/package.json

58 lines
1.6 KiB
JSON
Raw Normal View History

2026-03-30 11:57:42 +00:00
{
"name": "@erp/suppliers",
"description": "Suppliers",
2026-05-18 16:39:33 +00:00
"version": "0.6.7",
2026-03-30 11:57:42 +00:00
"private": true,
"type": "module",
"sideEffects": false,
"scripts": {
"typecheck": "tsc -p tsconfig.json --noEmit",
2026-05-05 11:34:36 +00:00
"check": "biome check .",
"lint": "biome lint .",
2026-03-30 11:57:42 +00:00
"clean": "rimraf .turbo node_modules dist"
},
"exports": {
".": "./src/common/index.ts",
"./common": "./src/common/index.ts",
2026-04-03 20:03:48 +00:00
"./api": "./src/api/index.ts",
"./api/domain": "./src/api/domain/index.ts",
"./client": "./src/web/manifest.ts",
"./globals.css": "./src/web/globals.css",
"./components": "./src/web/components/index.ts"
},
"peerDependencies": {
2026-04-12 10:06:32 +00:00
"react": "^19.2.5",
"react-dom": "^19.2.5"
2026-03-30 11:57:42 +00:00
},
"devDependencies": {
2026-04-15 10:23:59 +00:00
"@types/express": "^4.17.21",
2026-04-12 10:06:32 +00:00
"@types/react": "^19.2.14",
2026-04-03 20:03:48 +00:00
"@types/react-router-dom": "^5.3.3",
2026-04-12 10:06:32 +00:00
"react": "^19.2.5",
"react-dom": "^19.2.5",
2026-05-26 11:55:26 +00:00
"rimraf": "^6.1.3",
2026-04-12 10:06:32 +00:00
"typescript": "^6.0.2"
2026-03-30 11:57:42 +00:00
},
"dependencies": {
"@erp/auth": "workspace:*",
"@erp/core": "workspace:*",
2026-04-12 10:06:32 +00:00
"@hookform/resolvers": "^5.2.2",
2026-03-30 11:57:42 +00:00
"@repo/i18next": "workspace:*",
"@repo/rdx-criteria": "workspace:*",
"@repo/rdx-ddd": "workspace:*",
"@repo/rdx-logger": "workspace:*",
2026-04-03 20:03:48 +00:00
"@repo/rdx-ui": "workspace:*",
2026-03-30 11:57:42 +00:00
"@repo/rdx-utils": "workspace:*",
2026-04-03 20:03:48 +00:00
"@repo/shadcn-ui": "workspace:*",
2026-04-12 10:06:32 +00:00
"@tanstack/react-query": "^5.98.0",
2026-04-03 20:03:48 +00:00
"@tanstack/react-table": "^8.21.3",
2026-04-12 10:06:32 +00:00
"express": "^4.22.1",
"lucide-react": "^1.8.0",
2026-04-03 20:03:48 +00:00
"react-hook-form": "^7.72.1",
2026-04-12 10:06:32 +00:00
"react-i18next": "^17.0.2",
"react-router-dom": "^7.14.0",
2026-04-03 16:15:25 +00:00
"sequelize": "^6.37.8",
2026-04-12 10:06:32 +00:00
"use-debounce": "^10.1.1",
"zod": "^4.3.6"
2026-03-30 11:57:42 +00:00
}
}