mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-01 02:31:07 -05:00
* @types/node (^22.19.1 → ^22.19.3) * oxlint (^1.37.0 → ^1.38.0) * better-sqlite3 (^12.4.1 → ^12.5.0) * vitest (^4.0.9 → ^4.0.16) * react-aria-components (^1.13.0 → ^1.14.0) * @codemirror/autocomplete (^6.19.1 → ^6.20.0) * @codemirror/language (^6.11.3 → ^6.12.1) * @codemirror/state (^6.5.2 → ^6.5.3) * @swc/core (^1.15.2 → ^1.15.8) * @uiw/react-codemirror (^4.25.3 → ^4.25.4) * @vitejs/plugin-basic-ssl (^2.1.0 → ^2.1.3) * @vitejs/plugin-react (^5.1.1 → ^5.1.2) * hyperformula (^3.1.0 → ^3.1.1) * i18next (^25.6.2 → ^25.7.4) * jsdom (^27.2.0 → ^27.4.0) * react-aria (^3.44.0 → ^3.45.0) * @swc/helpers (^0.5.17 → ^0.5.18) * react-error-boundary (^6.0.0 → ^6.0.3) * react-grid-layout (^1.5.2 → ^1.5.3) * react-i18next (^16.3.3 → ^16.5.1) * react-simple-pull-to-refresh (^1.3.3 → ^1.3.4) * sass (^1.94.0 → ^1.97.2) * vite (^7.2.2 → ^7.3.1) * vite-plugin-pwa (^1.1.0 → ^1.2.0) * fs-extra (^11.3.2 → ^11.3.3) * @easyops-cn/docusaurus-search-local (^0.52.1 → ^0.52.2) * react (^19.2.0 → ^19.2.3) * react-dom (^19.2.0 → ^19.2.3) * @reduxjs/toolkit (^2.10.1 → ^2.11.2) * lru-cache (^11.2.2 → ^11.2.4) * ua-parser-js (^2.0.6 → ^2.0.7) * workbox-precaching (^7.3.0 → ^7.4.0) * winston (^3.18.3 → ^3.19.0) * supertest (^7.1.4 → ^7.2.2) * playwright (^1.56.0 → ^1.57.0) * stragglers * note * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
70 lines
2.5 KiB
JSON
70 lines
2.5 KiB
JSON
{
|
|
"name": "@actual-app/sync-server",
|
|
"version": "26.1.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",
|
|
"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.5.0",
|
|
"convict": "^6.2.4",
|
|
"cors": "^2.8.5",
|
|
"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.79.0",
|
|
"uuid": "^13.0.0",
|
|
"winston": "^3.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.28.5",
|
|
"@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.3",
|
|
"@types/supertest": "^6.0.3",
|
|
"http-proxy-middleware": "^3.0.5",
|
|
"nodemon": "^3.1.11",
|
|
"supertest": "^7.2.2",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|