Uecko_ERP/modules/invoices/package.json

57 lines
1.6 KiB
JSON
Raw Normal View History

2025-05-09 10:45:32 +00:00
{
"name": "@erp/invoices",
"version": "0.0.1",
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
2025-05-17 19:12:01 +00:00
".": "./src/index.ts",
2025-05-09 10:45:32 +00:00
"./api": "./src/api/index.ts",
2025-05-17 19:12:01 +00:00
"./dto": "./src/common/dto/index.ts",
"./manifest": "./src/web/manifest.ts",
2025-05-19 16:39:12 +00:00
"./hooks/*": ["./src/web/hooks/*.tsx", "./src/hooks/*.ts"],
2025-05-17 19:12:01 +00:00
"./components": "./src/web/components/index.tsx",
"./components/*": "./src/web/components/*.tsx",
"./locales": "./src/common/locales/index.tsx"
},
"peerDependencies": {
2025-05-17 19:47:08 +00:00
"ag-grid-community": "^33.3.0",
2025-05-19 11:59:13 +00:00
"ag-grid-react": "^33.3.0",
2025-05-20 10:08:24 +00:00
"express": "^4.18.2",
2025-05-17 19:12:01 +00:00
"i18next": "^25.1.1",
2025-05-19 16:39:12 +00:00
"lucide-react": "^0.503.0",
2025-05-17 19:12:01 +00:00
"react": "^18 || ^19",
2025-05-18 11:53:00 +00:00
"react-dom": "^18 || ^19",
2025-05-19 16:39:12 +00:00
"react-i18next": "^15.5.1",
2025-05-20 10:08:24 +00:00
"react-router-dom": "^6.26.0",
"sequelize": "^6.37.5"
2025-05-17 19:12:01 +00:00
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
2025-05-20 10:08:24 +00:00
"@types/express": "^4.17.21",
2025-05-17 19:12:01 +00:00
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
2025-05-20 10:08:24 +00:00
"@types/react-i18next": "^8.1.0",
"sequelize": "^6.37.5",
2025-05-17 19:12:01 +00:00
"typescript": "^5.8.3"
2025-05-09 10:45:32 +00:00
},
"dependencies": {
2025-05-17 19:12:01 +00:00
"@erp/core": "workspace:*",
2025-05-26 10:38:45 +00:00
"@repo/rdx-criteria": "workspace:*",
2025-05-20 10:08:24 +00:00
"@repo/rdx-ddd": "workspace:*",
"@repo/rdx-utils": "workspace:*",
2025-05-17 19:12:01 +00:00
"@repo/rdx-ui": "workspace:*",
"@repo/shadcn-ui": "workspace:*",
2025-05-17 19:47:08 +00:00
"ag-grid-community": "^33.3.0",
"ag-grid-react": "^33.3.0",
2025-05-20 10:08:24 +00:00
"express": "^4.18.2",
2025-05-17 19:12:01 +00:00
"i18next": "^25.1.1",
"lucide-react": "^0.503.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^15.5.1",
2025-05-19 11:59:13 +00:00
"react-router-dom": "^6.26.0",
"slugify": "^1.6.6",
"zod": "^3.24.4"
2025-05-09 10:45:32 +00:00
}
}