Uecko_ERP/apps/server/package.json

65 lines
1.8 KiB
JSON
Raw Normal View History

2025-01-28 14:01:02 +00:00
{
"name": "node-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"build": "npm run clean && npm run typecheck && esbuild src/index.ts --platform=node --format=cjs --bundle --sourcemap --minify --outdir=dist",
"start": "node dist/index.js",
2025-01-29 19:02:59 +00:00
"test": "jest --config=./jest.config.ts --verbose",
2025-01-28 14:01:02 +00:00
"lint": "eslint src --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
2025-01-29 19:02:59 +00:00
"@types/bcrypt": "^5.0.2",
2025-01-29 16:01:17 +00:00
"@types/express": "^5.0.0",
2025-01-29 19:02:59 +00:00
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.8",
2025-01-29 16:01:17 +00:00
"@types/node": "^22.10.7",
2025-01-29 19:02:59 +00:00
"@types/passport-jwt": "^4.0.1",
2025-01-29 16:01:17 +00:00
"@types/response-time": "^2.3.8",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
2025-01-29 19:02:59 +00:00
"jest": "^29.7.0",
2025-01-29 16:01:17 +00:00
"nodemon": "^3.1.9",
2025-01-29 19:02:59 +00:00
"ts-jest": "^29.2.5",
2025-01-29 16:01:17 +00:00
"ts-node-dev": "^2.0.0",
2025-01-28 14:01:02 +00:00
"tsx": "^4.19.2",
2025-01-29 16:01:17 +00:00
"typescript": "^5.7.3"
2025-01-28 14:01:02 +00:00
},
"dependencies": {
2025-01-29 19:02:59 +00:00
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
2025-01-29 16:01:17 +00:00
"dotenv": "^16.4.7",
2025-01-28 14:01:02 +00:00
"esbuild": "^0.24.0",
2025-01-29 16:01:17 +00:00
"express": "^4.21.2",
"helmet": "^8.0.0",
2025-01-29 19:02:59 +00:00
"jsonwebtoken": "^9.0.2",
2025-01-29 16:01:17 +00:00
"mariadb": "^3.4.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-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",
"uuid": "^11.0.5",
"zod": "^3.24.1"
},
"_moduleAliases": {
"@common": "./dist/common",
"@auth": "./dist/auth",
"@config": "./dist/config",
"@companies": "./dist/companies"
2025-01-28 14:01:02 +00:00
}
}