factuges_2025/modules/invoices/package.json

78 lines
2.1 KiB
JSON
Raw Normal View History

2025-04-27 20:47:47 +00:00
{
"name": "@modules/invoices",
"version": "0.0.0",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"clean": "rm -rf dist && rm -rf node_modules",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"jest": {
"preset": "@repo/jest-presets/node"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@repo/eslint-config": "workspace:*",
"@repo/jest-presets": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/dinero.js": "^1.9.4",
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/luxon": "^3.6.2",
"@types/morgan": "^1.9.9",
"@types/node": "^22.15.2",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/response-time": "^2.3.8",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"esbuild": "^0.25.3",
"esbuild-register": "^3.6.0",
"eslint": "^9.25.1",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"supertest": "^7.1.0",
"tsc-alias": "^1.8.15",
"typescript": "5.8.3"
},
"dependencies": {
"@rdx/core": "workspace:*",
"bcrypt": "^5.1.1",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dinero.js": "^1.9.1",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"helmet": "^8.1.0",
"http-status": "^2.1.0",
"jsonwebtoken": "^9.0.2",
"libphonenumber-js": "^1.11.20",
"luxon": "^3.5.0",
"module-alias": "^2.2.3",
"mysql2": "^3.12.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"reflect-metadata": "^0.2.2",
"response-time": "^2.3.3",
2025-04-30 18:26:39 +00:00
"sequelize": "^6.37.5",
2025-04-27 20:47:47 +00:00
"zod": "^3.24.3"
}
}