mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-22 00:13:45 -05:00
64 lines
2.0 KiB
JSON
64 lines
2.0 KiB
JSON
{
|
|
"name": "@actual-app/sync-server",
|
|
"version": "25.3.1",
|
|
"license": "MIT",
|
|
"description": "actual syncing server",
|
|
"type": "module",
|
|
"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.13.10",
|
|
"@types/supertest": "^2.0.16",
|
|
"@types/uuid": "^9.0.8",
|
|
"http-proxy-middleware": "^3.0.3",
|
|
"jest": "^29.7.0",
|
|
"nodemon": "^3.1.9",
|
|
"supertest": "^6.3.4",
|
|
"typescript": "^5.8.2"
|
|
}
|
|
}
|