actual-server/package.json

36 lines
885 B
JSON
Raw Normal View History

2022-03-31 17:19:08 +00:00
{
"name": "actual-sync",
"version": "1.0.0",
2022-04-29 14:39:04 +00:00
"license": "MIT",
2022-03-31 17:19:08 +00:00
"description": "actual syncing server",
"main": "index.js",
"scripts": {
"start": "node app",
"lint": "eslint ."
2022-03-31 17:19:08 +00:00
},
"dependencies": {
2022-04-29 02:09:40 +00:00
"@actual-app/api": "^4.0.1",
2022-04-29 14:10:47 +00:00
"@actual-app/web": "^4.0.2",
2022-03-31 17:19:08 +00:00
"adm-zip": "^0.5.9",
"bcrypt": "^5.0.1",
"better-sqlite3": "^7.5.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.3",
2022-05-01 16:07:45 +00:00
"express-actuator": "^1.8.1",
2022-03-31 17:19:08 +00:00
"express-response-size": "^0.0.3",
"node-fetch": "^2.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
2022-05-15 14:50:42 +00:00
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"@types/better-sqlite3": "^7.5.0",
2022-05-04 20:11:34 +00:00
"@types/node": "^17.0.31",
"typescript": "^4.6.4"
2022-03-31 17:19:08 +00:00
}
}