Uecko_ERP/apps/server/package.json

88 lines
2.3 KiB
JSON
Raw Normal View History

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",
"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-05-02 21:43:51 +00:00
"@types/dinero.js": "^1.9.4",
"@types/dotenv": "^8.2.3",
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-02-03 13:12:36 +00:00
"@types/luxon": "^3.4.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-01-29 19:02:59 +00:00
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
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-09 10:45:32 +00:00
"@erp/auth": "workspace:*",
"@erp/core": "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-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-02-01 21:48:13 +00:00
"http-status": "^2.1.0",
2025-01-29 19:02:59 +00:00
"jsonwebtoken": "^9.0.2",
2025-02-20 18:55:24 +00:00
"libphonenumber-js": "^1.11.20",
2025-02-03 13:12:36 +00:00
"luxon": "^3.5.0",
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-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-01-29 19:02:59 +00:00
"zod": "^3.24.1"
},
2025-02-03 13:12:36 +00:00
"engines": {
"node": ">=22"
},
2025-05-04 20:06:57 +00:00
"tsup": {
2025-05-09 10:45:32 +00:00
"entry": ["src/index.ts"],
2025-05-04 20:06:57 +00:00
"outDir": "dist",
2025-05-09 10:45:32 +00:00
"format": ["esm", "cjs"],
2025-05-04 20:06:57 +00:00
"target": "es2020",
"sourcemap": true,
"clean": true,
"dts": true,
"splitting": false,
"skipNodeModulesBundle": true
2025-01-28 14:01:02 +00:00
}
}