actual-server/package.json

38 lines
967 B
JSON
Raw Normal View History

2022-03-31 17:19:08 +00:00
{
"name": "actual-sync",
"version": "22.12.09",
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",
2022-05-04 20:15:54 +00:00
"lint": "eslint .",
2022-05-04 20:39:43 +00:00
"build": "tsc",
2022-05-04 20:15:54 +00:00
"types": "tsc --noEmit --incremental",
"verify": "yarn -s lint && yarn types"
2022-03-31 17:19:08 +00:00
},
"dependencies": {
2022-12-08 21:00:01 +00:00
"@actual-app/api": "4.1.5",
"@actual-app/web": "22.12.3",
2022-03-31 17:19:08 +00:00
"bcrypt": "^5.0.1",
"better-sqlite3": "^7.5.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "4.17",
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": {
"@types/better-sqlite3": "^7.5.0",
"@types/node": "^17.0.31",
"@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",
"typescript": "^4.6.4"
2022-03-31 17:19:08 +00:00
}
}