ci(build): added in dotenvx for env stuff

This commit is contained in:
2025-12-15 20:29:15 -06:00
parent 3bcc6f89b3
commit 77a9711309
3 changed files with 3961 additions and 20 deletions

View File

@@ -5,12 +5,17 @@
"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"
"start": "node dist/index.js",
"commit": "cz",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"repository": {
"type": "git",
@@ -30,12 +35,24 @@
"openapi-types": "^12.1.3",
"ts-node-dev": "^2.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
"typescript": "^5.9.3",
"@changesets/cli": "^2.27.0",
"@commitlint/cli": "^18.4.0",
"@commitlint/config-conventional": "^18.4.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.51.2",
"@scalar/express-api-reference": "^0.8.28",
"better-auth": "^1.4.6",
"express": "^5.2.1",
"npm-check-updates": "^19.1.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}