mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-22 22:02:00 +00:00
- Introduced a new Makefile target `update-version` to streamline version updates across all package.json files. - Added a script `update-versions.sh` to automate the version number update process. - Updated package versions in `apps/docs`, `apps/server`, and `apps/web` to `3.1-beta` for consistency. - Enhanced the build process to include version updates before building the Docker image.
72 lines
2.0 KiB
JSON
72 lines
2.0 KiB
JSON
{
|
|
"name": "palmr-api",
|
|
"version": "3.1-beta",
|
|
"description": "API for Palmr",
|
|
"private": true,
|
|
"author": "Daniel Luiz Alves <daniel@kyantech.com.br>",
|
|
"keywords": [
|
|
"palmr",
|
|
"api",
|
|
"backend",
|
|
"server",
|
|
"nodejs",
|
|
"typescript"
|
|
],
|
|
"license": "BSD-2-Clause",
|
|
"packageManager": "pnpm@10.6.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "tsx watch src/server.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"start": "node dist/server.js",
|
|
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
|
|
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
|
|
"format": "prettier . --write",
|
|
"format:check": "prettier . --check",
|
|
"db:seed": "ts-node prisma/seed.js"
|
|
},
|
|
"prisma": {
|
|
"seed": "node prisma/seed.js"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.817.0",
|
|
"@aws-sdk/s3-request-presigner": "^3.817.0",
|
|
"@fastify/cookie": "^11.0.2",
|
|
"@fastify/cors": "^10.0.2",
|
|
"@fastify/jwt": "^9.0.3",
|
|
"@fastify/multipart": "^9.0.3",
|
|
"@fastify/static": "^8.1.1",
|
|
"@fastify/swagger": "^9.4.2",
|
|
"@fastify/swagger-ui": "^5.2.1",
|
|
"@prisma/client": "^6.4.1",
|
|
"@scalar/fastify-api-reference": "^1.25.116",
|
|
"@types/crypto-js": "^4.2.2",
|
|
"bcryptjs": "^2.4.3",
|
|
"crypto-js": "^4.2.0",
|
|
"fastify": "^5.2.1",
|
|
"fastify-type-provider-zod": "^4.0.2",
|
|
"jose": "^5.10.0",
|
|
"node-fetch": "^3.3.2",
|
|
"nodemailer": "^6.10.0",
|
|
"openid-client": "^6.5.0",
|
|
"sharp": "^0.33.5",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.19.0",
|
|
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"@types/node": "^22.13.4",
|
|
"@types/nodemailer": "^6.4.17",
|
|
"eslint": "^9.19.0",
|
|
"eslint-config-prettier": "^10.0.1",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"globals": "^15.14.0",
|
|
"prettier": "3.4.2",
|
|
"prisma": "^6.3.1",
|
|
"ts-node": "^10.9.2",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.3",
|
|
"typescript-eslint": "^8.23.0"
|
|
}
|
|
} |