mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-22 00:13:45 -05:00
* 🔖 (26.3.0) * Remove used release notes * Add release notes for PR #7097 * Remove used release notes * Remove used release notes * Add release notes for version 26.3.0 * Add new terms to spelling expectation list * Fix spelling and capitalization in release notes Corrected spelling of 'reorganisation' to 'reorganization' and updated 'coderabbit' to 'CodeRabbit' for consistency. * Update patterns.txt to allowlist 'CodeRabbit' Add 'CodeRabbit' to allowlist of proper nouns. * Clarify chart theming support in release notes Updated the release notes to specify bar/pie chart theming support and added details about theme variables for customization. * Remove 'CodeRabbit' from spelling expectations * Refactor release notes and improve formatting Reorganize release notes for clarity and update content. * Create 2026-03-02-release-26-3-0.md * Change release date to 2026-03-02 Updated the release date for version 26.3.0. * Update release notes for version 26.3.0 --------- Co-authored-by: jfdoming <9922514+jfdoming@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Julian Dominguez-Schatz <julian.dominguezschatz@gmail.com>
72 lines
2.6 KiB
JSON
72 lines
2.6 KiB
JSON
{
|
|
"name": "@actual-app/sync-server",
|
|
"version": "26.3.0",
|
|
"description": "actual syncing server",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"actual-server": "./build/bin/actual-server.js"
|
|
},
|
|
"files": [
|
|
"build",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "yarn build && node build/app",
|
|
"start-monitor": "nodemon --exec 'yarn build && node build/app' --ignore './build/**/*' --ext 'ts,js' build/app",
|
|
"build": "tsc && yarn add-import-extensions && yarn copy-static-assets",
|
|
"typecheck": "tsc --noEmit && tsc-strict",
|
|
"add-import-extensions": "node bin/add-import-extensions.mjs",
|
|
"copy-static-assets": "rm -rf build/src/sql && cp -r src/sql build/src/sql",
|
|
"test": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules --import ./register-loader.mjs --trace-warnings' vitest --run",
|
|
"db:migrate": "yarn build && cross-env NODE_ENV=development node build/src/scripts/run-migrations.js up",
|
|
"db:downgrade": "yarn build && cross-env NODE_ENV=development node build/src/scripts/run-migrations.js down",
|
|
"db:test-migrate": "yarn build && cross-env NODE_ENV=test node build/src/scripts/run-migrations.js up",
|
|
"db:test-downgrade": "yarn build && cross-env NODE_ENV=test node build/src/scripts/run-migrations.js down",
|
|
"reset-password": "yarn build && node build/src/scripts/reset-password.js",
|
|
"disable-openid": "yarn build && node build/src/scripts/disable-openid.js",
|
|
"health-check": "yarn build && node build/src/scripts/health-check.js"
|
|
},
|
|
"dependencies": {
|
|
"@actual-app/crdt": "2.1.0",
|
|
"@actual-app/web": "workspace:*",
|
|
"bcrypt": "^6.0.0",
|
|
"better-sqlite3": "^12.6.2",
|
|
"convict": "^6.2.4",
|
|
"cors": "^2.8.6",
|
|
"date-fns": "^4.1.0",
|
|
"debug": "^4.4.3",
|
|
"express": "^5.2.1",
|
|
"express-rate-limit": "^8.2.1",
|
|
"express-winston": "^4.2.0",
|
|
"ipaddr.js": "^2.3.0",
|
|
"jws": "^4.0.1",
|
|
"migrate": "^2.1.0",
|
|
"nordigen-node": "^1.4.1",
|
|
"openid-client": "^5.7.1",
|
|
"pluggy-sdk": "^0.83.0",
|
|
"uuid": "^13.0.0",
|
|
"winston": "^3.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.29.0",
|
|
"@babel/preset-typescript": "^7.28.5",
|
|
"@types/babel__core": "^7",
|
|
"@types/bcrypt": "^6.0.0",
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/convict": "^6",
|
|
"@types/cors": "^2.8.19",
|
|
"@types/express": "^5.0.6",
|
|
"@types/express-actuator": "^1.8.3",
|
|
"@types/node": "^22.19.10",
|
|
"@types/supertest": "^6.0.3",
|
|
"http-proxy-middleware": "^3.0.5",
|
|
"nodemon": "^3.1.11",
|
|
"supertest": "^7.2.2",
|
|
"typescript": "^5.9.3",
|
|
"typescript-strict-plugin": "^2.4.4",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|