mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-27 01:28:19 -05:00
* Bump http-proxy-middleware from 3.0.3 to 3.0.5 Bumps [http-proxy-middleware](https://github.com/chimurai/http-proxy-middleware) from 3.0.3 to 3.0.5. - [Release notes](https://github.com/chimurai/http-proxy-middleware/releases) - [Changelog](https://github.com/chimurai/http-proxy-middleware/blob/master/CHANGELOG.md) - [Commits](https://github.com/chimurai/http-proxy-middleware/compare/v3.0.3...v3.0.5) --- updated-dependencies: - dependency-name: http-proxy-middleware dependency-version: 3.0.5 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> * Add release notes --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Julian Dominguez-Schatz <julian.dominguezschatz@gmail.com>
76 lines
2.2 KiB
JSON
76 lines
2.2 KiB
JSON
{
|
|
"name": "@actual-app/sync-server",
|
|
"version": "25.4.0",
|
|
"license": "MIT",
|
|
"description": "actual syncing server",
|
|
"bin": {
|
|
"actual-server": "./bin/actual-server.js"
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"bin",
|
|
"src",
|
|
"app.js",
|
|
"migrations",
|
|
"default-db.sqlite",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"start": "node app",
|
|
"start-monitor": "nodemon app",
|
|
"build": "tsc",
|
|
"test": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules --trace-warnings' jest --coverage",
|
|
"db:migrate": "NODE_ENV=development node src/run-migrations.js up",
|
|
"db:downgrade": "NODE_ENV=development node src/run-migrations.js down",
|
|
"db:test-migrate": "NODE_ENV=test node src/run-migrations.js up",
|
|
"db:test-downgrade": "NODE_ENV=test node src/run-migrations.js down",
|
|
"reset-password": "node src/scripts/reset-password.js",
|
|
"disable-openid": "node src/scripts/disable-openid.js",
|
|
"health-check": "node src/scripts/health-check.js"
|
|
},
|
|
"dependencies": {
|
|
"@actual-app/crdt": "2.1.0",
|
|
"@actual-app/web": "workspace:*",
|
|
"bcrypt": "^5.1.1",
|
|
"better-sqlite3": "^11.9.1",
|
|
"body-parser": "^1.20.3",
|
|
"convict": "^6.2.4",
|
|
"cors": "^2.8.5",
|
|
"date-fns": "^2.30.0",
|
|
"debug": "^4.4.0",
|
|
"express": "4.21.2",
|
|
"express-actuator": "1.8.4",
|
|
"express-rate-limit": "^7.5.0",
|
|
"express-response-size": "^0.0.3",
|
|
"express-winston": "^4.2.0",
|
|
"jws": "^4.0.0",
|
|
"migrate": "^2.1.0",
|
|
"nordigen-node": "^1.4.0",
|
|
"openid-client": "^5.4.3",
|
|
"pluggy-sdk": "^0.68.1",
|
|
"uuid": "^9.0.1",
|
|
"winston": "^3.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.26.10",
|
|
"@babel/preset-typescript": "^7.20.2",
|
|
"@types/babel__core": "^7",
|
|
"@types/bcrypt": "^5.0.2",
|
|
"@types/better-sqlite3": "^7.6.12",
|
|
"@types/convict": "^6",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^5.0.0",
|
|
"@types/express-actuator": "^1.8.3",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.14.0",
|
|
"@types/supertest": "^2.0.16",
|
|
"@types/uuid": "^9.0.8",
|
|
"http-proxy-middleware": "^3.0.5",
|
|
"jest": "^29.7.0",
|
|
"nodemon": "^3.1.9",
|
|
"supertest": "^6.3.4",
|
|
"typescript": "^5.8.2"
|
|
}
|
|
}
|