2025-01-28 14:01:02 +00:00
|
|
|
{
|
2025-05-02 21:43:51 +00:00
|
|
|
"name": "server",
|
2025-01-28 14:01:02 +00:00
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "",
|
2025-05-04 20:06:57 +00:00
|
|
|
"main": "index.ts",
|
2025-01-28 14:01:02 +00:00
|
|
|
"scripts": {
|
2025-05-04 20:06:57 +00:00
|
|
|
"build": "tsc && tsup",
|
2025-05-20 10:08:24 +00:00
|
|
|
"dev": "node --import=tsx --watch src/index.ts",
|
2025-05-04 20:06:57 +00:00
|
|
|
"start:dev": "node --import=tsx --watch src/index.ts",
|
|
|
|
|
"start:prod": "node dist/index.js",
|
2025-05-09 10:45:32 +00:00
|
|
|
"clean": "rm -rf dist node_modules",
|
2025-01-28 14:01:02 +00:00
|
|
|
"typecheck": "tsc --noEmit",
|
2025-01-29 19:02:59 +00:00
|
|
|
"test": "jest --config=./jest.config.ts --verbose",
|
2025-05-04 20:06:57 +00:00
|
|
|
"lint": "biome lint --fix",
|
|
|
|
|
"format": "biome format --write"
|
2025-01-28 14:01:02 +00:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
|
|
|
|
"license": "ISC",
|
|
|
|
|
"devDependencies": {
|
2025-05-04 20:06:57 +00:00
|
|
|
"@biomejs/biome": "1.9.4",
|
2025-05-02 21:43:51 +00:00
|
|
|
"@repo/typescript-config": "workspace:*",
|
2025-01-29 19:02:59 +00:00
|
|
|
"@types/bcrypt": "^5.0.2",
|
2025-06-17 16:18:25 +00:00
|
|
|
"@types/cors": "^2.8.19",
|
2025-05-02 21:43:51 +00:00
|
|
|
"@types/dinero.js": "^1.9.4",
|
2025-02-03 13:12:36 +00:00
|
|
|
"@types/express": "^4.17.21",
|
2025-02-03 19:50:16 +00:00
|
|
|
"@types/glob": "^8.1.0",
|
2025-01-29 19:02:59 +00:00
|
|
|
"@types/jest": "^29.5.14",
|
|
|
|
|
"@types/jsonwebtoken": "^9.0.8",
|
2025-06-26 18:05:33 +00:00
|
|
|
"@types/luxon": "^3.6.2",
|
2025-05-09 10:45:32 +00:00
|
|
|
"@types/node": "^22.15.12",
|
2025-02-03 18:03:23 +00:00
|
|
|
"@types/passport": "^1.0.16",
|
2025-01-29 19:02:59 +00:00
|
|
|
"@types/passport-jwt": "^4.0.1",
|
2025-02-03 18:03:23 +00:00
|
|
|
"@types/passport-local": "^1.0.38",
|
2025-01-29 16:01:17 +00:00
|
|
|
"@types/response-time": "^2.3.8",
|
2025-03-04 17:08:33 +00:00
|
|
|
"tsconfig-paths": "^4.2.0",
|
2025-05-04 20:06:57 +00:00
|
|
|
"tsup": "8.4.0",
|
|
|
|
|
"tsx": "4.19.4",
|
|
|
|
|
"typescript": "^5.8.3"
|
2025-01-28 14:01:02 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-05-28 14:21:09 +00:00
|
|
|
"@erp/auth": "workspace:*",
|
2025-06-12 06:55:17 +00:00
|
|
|
"@erp/core": "workspace:*",
|
2025-06-11 15:13:44 +00:00
|
|
|
"@erp/customer-invoices": "workspace:*",
|
2025-09-12 18:07:38 +00:00
|
|
|
"@erp/customers": "workspace:*",
|
2025-09-23 10:40:49 +00:00
|
|
|
"@repo/rdx-logger": "workspace:*",
|
2025-01-29 19:02:59 +00:00
|
|
|
"bcrypt": "^5.1.1",
|
2025-02-03 13:12:36 +00:00
|
|
|
"cls-rtracer": "^2.6.3",
|
2025-01-29 19:02:59 +00:00
|
|
|
"cors": "^2.8.5",
|
2025-02-24 19:00:28 +00:00
|
|
|
"dinero.js": "^1.9.1",
|
2025-05-02 21:43:51 +00:00
|
|
|
"dotenv": "^16.5.0",
|
2025-02-03 13:12:36 +00:00
|
|
|
"express": "^4.18.2",
|
2025-06-12 06:55:17 +00:00
|
|
|
"express-list-routes": "^1.3.1",
|
2025-09-12 18:07:38 +00:00
|
|
|
"handlebars": "^4.7.8",
|
2025-01-29 16:01:17 +00:00
|
|
|
"helmet": "^8.0.0",
|
2025-02-03 13:12:36 +00:00
|
|
|
"http": "0.0.1-security",
|
2025-01-29 19:02:59 +00:00
|
|
|
"jsonwebtoken": "^9.0.2",
|
2025-06-26 18:05:33 +00:00
|
|
|
"luxon": "^3.6.1",
|
2025-01-29 19:02:59 +00:00
|
|
|
"module-alias": "^2.2.3",
|
2025-01-29 16:01:17 +00:00
|
|
|
"mysql2": "^3.12.0",
|
2025-01-29 19:02:59 +00:00
|
|
|
"passport": "^0.7.0",
|
|
|
|
|
"passport-jwt": "^4.0.1",
|
2025-02-03 18:03:23 +00:00
|
|
|
"passport-local": "^1.0.0",
|
2025-02-03 19:50:16 +00:00
|
|
|
"path": "^0.12.7",
|
2025-09-12 18:07:38 +00:00
|
|
|
"puppeteer": "^24.20.0",
|
|
|
|
|
"puppeteer-report": "^3.2.0",
|
2025-01-29 16:01:17 +00:00
|
|
|
"reflect-metadata": "^0.2.2",
|
|
|
|
|
"response-time": "^2.3.3",
|
2025-01-29 19:02:59 +00:00
|
|
|
"sequelize": "^6.37.5",
|
|
|
|
|
"shallow-equal-object": "^1.1.1",
|
2025-02-03 13:12:36 +00:00
|
|
|
"ts-node": "^10.9.1",
|
2025-01-29 19:02:59 +00:00
|
|
|
"uuid": "^11.0.5",
|
2025-02-03 13:12:36 +00:00
|
|
|
"winston": "^3.17.0",
|
|
|
|
|
"winston-daily-rotate-file": "^5.0.0",
|
2025-09-24 17:30:35 +00:00
|
|
|
"zod": "^4.1.11"
|
2025-01-29 19:02:59 +00:00
|
|
|
},
|
2025-02-03 13:12:36 +00:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=22"
|
|
|
|
|
},
|
2025-05-04 20:06:57 +00:00
|
|
|
"tsup": {
|
2025-10-28 17:52:30 +00:00
|
|
|
"entry": [
|
|
|
|
|
"src/index.ts"
|
|
|
|
|
],
|
2025-05-04 20:06:57 +00:00
|
|
|
"outDir": "dist",
|
2025-10-28 17:52:30 +00:00
|
|
|
"format": [
|
|
|
|
|
"esm",
|
|
|
|
|
"cjs"
|
|
|
|
|
],
|
2025-08-25 17:42:56 +00:00
|
|
|
"target": "ES2022",
|
2025-05-04 20:06:57 +00:00
|
|
|
"sourcemap": true,
|
|
|
|
|
"clean": true,
|
|
|
|
|
"dts": true,
|
|
|
|
|
"splitting": false,
|
|
|
|
|
"skipNodeModulesBundle": true
|
2025-01-28 14:01:02 +00:00
|
|
|
}
|
|
|
|
|
}
|