Uecko_ERP/modules/companies/package.json

33 lines
810 B
JSON
Raw Normal View History

2026-07-06 10:57:33 +00:00
{
"name": "@erp/companies",
"description": "Companies module",
2026-07-15 11:10:26 +00:00
"version": "0.9.1",
2026-07-06 10:57:33 +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": {
".": "./src/common/index.ts",
"./common": "./src/common/index.ts",
"./api": "./src/api/index.ts"
},
"devDependencies": {
"@types/express": "^4.17.21",
"rimraf": "^6.1.3",
"typescript": "^6.0.2"
},
"dependencies": {
"@erp/core": "workspace:*",
"@erp/identity": "workspace:*",
"@repo/rdx-ddd": "workspace:*",
"@repo/rdx-utils": "workspace:*",
"express": "^4.22.1",
"sequelize": "^6.37.8",
"zod": "^4.3.6"
}
}