Files
actual/package.json
Matiss Janis Aboltins 37c5278abf 🔖 (23.3.1) fix nordigen usage in fly.io (#155)
This _slightly_ changes the interface for configuring Nordigen, but IMO
it's safe to do because

1. the nordigen support is still experimental and subject to breaking
changes
2. we released 23.3.0 only an hour ago
2023-03-09 21:37:29 +00:00

50 lines
1.4 KiB
JSON

{
"name": "actual-sync",
"version": "23.3.1",
"license": "MIT",
"description": "actual syncing server",
"type": "module",
"scripts": {
"start": "node app",
"lint": "eslint . --max-warnings 0",
"build": "tsc",
"test": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules --trace-warnings' jest --coverage",
"types": "tsc --noEmit --incremental",
"verify": "yarn -s lint && yarn types"
},
"dependencies": {
"@actual-app/api": "5.1.0",
"@actual-app/web": "23.3.0",
"bcrypt": "^5.1.0",
"better-sqlite3": "^8.2.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"express": "4.18.2",
"express-actuator": "1.8.4",
"express-response-size": "^0.0.3",
"nordigen-node": "^1.2.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/preset-flow": "^7.18.6",
"@types/bcrypt": "^5.0.0",
"@types/better-sqlite3": "^7.6.3",
"@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"
},
"packageManager": "yarn@3.4.1"
}