Files
lst_v3/package.json

62 lines
1.8 KiB
JSON

{
"name": "lst_v3",
"version": "1.0.1",
"description": "The tool that supports us in our everyday alplaprod",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "dotenvx run -f .env -- npm run dev:app",
"dev:app": "cd backend && tsx watch app.ts",
"prebuild": "tsx backend/src/scaler/generateSpec.ts",
"build": "esbuild backend/app.ts --bundle --platform=node --minify --outfile=dist/index.js --format=esm --packages=external",
"build:app": "ncc build backend/app.ts -o dist -m -s",
"lint": "tsc",
"start": "node dist/index.js",
"commit": "cz",
"changeset": "changeset",
"version": "changeset version",
"release": "dotenvx run -f .env -- npm run version && git push --follow-tags && node scripts/create-release.js"
},
"repository": {
"type": "git",
"url": "https://git.tuffraid.net/cowch/lst_v3.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@changesets/cli": "^2.27.0",
"@commitlint/cli": "^18.4.0",
"@commitlint/config-conventional": "^18.4.0",
"@types/express": "^5.0.6",
"@types/mssql": "^9.1.8",
"@types/node": "^24.10.1",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@vercel/ncc": "^0.38.4",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"openapi-types": "^12.1.3",
"ts-node-dev": "^2.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.51.2",
"@scalar/express-api-reference": "^0.8.28",
"axios": "^1.13.2",
"better-auth": "^1.4.6",
"express": "^5.2.1",
"mssql": "^12.2.0",
"npm-check-updates": "^19.1.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}