mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-22 00:13:45 -05:00
* @types/node (^22.19.10 → ^22.19.15) * baseline-browser-mapping (^2.9.19 → ^2.10.0) * eslint (^9.39.2 → ^9.39.3) * lage (^2.14.17 → ^2.14.19) * lint-staged (^16.2.7 → ^16.3.2) * minimatch (^10.1.2 → ^10.2.4) * oxlint (^1.47.0 → ^1.51.0) * rollup-plugin-visualizer (^6.0.5 → ^6.0.11) * @chromatic-com/storybook (^5.0.0 → ^5.0.1) * @storybook/addon-a11y (^10.2.7 → ^10.2.16) * @storybook/addon-docs (^10.2.7 → ^10.2.16) * @storybook/react-vite (^10.2.7 → ^10.2.16) * eslint-plugin-storybook (^10.2.7 → ^10.2.16) * storybook (^10.2.7 → ^10.2.16) * @codemirror/autocomplete (^6.20.0 → ^6.20.1) * @codemirror/lang-javascript (^6.2.4 → ^6.2.5) * @codemirror/language (^6.12.1 → ^6.12.2) * @rolldown/plugin-babel (~0.1.7 → ~0.1.8) * @swc/core (^1.15.11 → ^1.15.18) * @swc/helpers (^0.5.18 → ^0.5.19) * @tanstack/react-query (^5.90.20 → ^5.90.21) * @uiw/react-codemirror (^4.25.4 → ^4.25.7) * hyperformula (^3.1.1 → ^3.2.0) * i18next (^25.8.4 → ^25.8.14) * i18next-parser (^9.3.0 → ^9.4.0) * react-i18next (^16.5.4 → ^16.5.6) * react-virtualized-auto-sizer (^2.0.2 → ^2.0.3) * fs-extra (^11.3.3 → ^11.3.4) * @r74tech/docusaurus-plugin-panzoom (^2.4.0 → ^2.4.2) * lru-cache (^11.2.5 → ^11.2.6) * nodemon (^3.1.11 → ^3.1.14) * eslint-plugin-perfectionist (^4.15.1 → ^5.6.0) * downshift (9.0.10 → 9.3.2) * react-router (7.13.0 → 7.13.1) * @easyops-cn/docusaurus-search-local (^0.52.3 → ^0.55.1) * peggy (5.0.6 → 5.1.0) * @types/supertest (^6.0.3 → ^7.2.0) * note
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": "tsgo && yarn add-import-extensions && yarn copy-static-assets",
|
|
"typecheck": "tsgo -b && 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.3.0",
|
|
"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.15",
|
|
"@types/supertest": "^7.2.0",
|
|
"@typescript/native-preview": "^7.0.0-dev.20260309.1",
|
|
"http-proxy-middleware": "^3.0.5",
|
|
"nodemon": "^3.1.14",
|
|
"supertest": "^7.2.2",
|
|
"typescript-strict-plugin": "^2.4.4",
|
|
"vitest": "^4.1.0"
|
|
}
|
|
}
|