Files
actual/package.json
dependabot[bot] c01e229bd7 build(deps): bump express from 4.19.2 to 4.20.0 (#457)
Bumps [express](https://github.com/expressjs/express) from 4.19.2 to 4.20.0.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.19.2...4.20.0)

---
updated-dependencies:
- dependency-name: express
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-22 20:04:52 +01:00

67 lines
2.1 KiB
JSON

{
"name": "actual-sync",
"version": "24.9.0",
"license": "MIT",
"description": "actual syncing server",
"type": "module",
"scripts": {
"start": "node app",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"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",
"types": "tsc --noEmit --incremental",
"verify": "yarn lint && yarn types",
"reset-password": "node src/scripts/reset-password.js",
"health-check": "node src/scripts/health-check.js"
},
"dependencies": {
"@actual-app/crdt": "2.1.0",
"@actual-app/web": "24.9.0",
"bcrypt": "^5.1.1",
"better-sqlite3": "^9.6.0",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"debug": "^4.3.4",
"express": "4.20.0",
"express-actuator": "1.8.4",
"express-rate-limit": "^6.7.0",
"express-response-size": "^0.0.3",
"express-winston": "^4.2.0",
"jws": "^4.0.0",
"migrate": "^2.0.1",
"nordigen-node": "^1.4.0",
"uuid": "^9.0.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.20.2",
"@types/bcrypt": "^5.0.2",
"@types/better-sqlite3": "^7.6.7",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-actuator": "^1.8.0",
"@types/jest": "^29.2.3",
"@types/node": "^17.0.45",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"supertest": "^6.3.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@4.3.1"
}