chore: initialise project (package.json, .gitignore)

ESM Node.js project using express, jose, node-fetch, uuid.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jeanGaston 2026-04-13 10:33:33 +02:00
commit ccb8efd72a
2 changed files with 20 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
node_modules/
data/
*.pem
.env

16
package.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "actual-gocardless-proxy",
"version": "1.0.0",
"description": "GoCardless Bank Account Data API proxy backed by Enable Banking — lets Actual Budget sync French bank accounts",
"type": "module",
"scripts": {
"start": "node src/server.js",
"setup": "node src/setup.js"
},
"dependencies": {
"express": "^4.18.2",
"jose": "^5.2.3",
"node-fetch": "^3.3.2",
"uuid": "^9.0.1"
}
}