-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "actual-rest-api",
"version": "2.1.0",
"type": "module",
"main": "server.js",
"dependencies": {
"@actual-app/api": "^25.12.0",
"@apidevtools/swagger-parser": "^12.1.0",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.5.0",
"cors": "^2.8.5",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"express-session": "^1.18.2",
"helmet": "^8.1.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.3",
"pg": "^8.16.3",
"prom-client": "^15.1.3",
"rate-limit-redis": "^4.3.1",
"swagger-ui-express": "^5.0.1",
"winston": "^3.15.0",
"yaml": "^2.7.0",
"zod": "^4.2.1"
},
"devDependencies": {
"eslint": "^9.16.0",
"eslint-plugin-security": "^3.0.1",
"husky": "^9.0.11",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"supertest": "^7.1.4"
},
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"validate:openapi": "node scripts/validate-openapi.mjs",
"lint": "eslint src --max-warnings 0",
"audit": "npm audit --audit-level=moderate",
"prepare": "husky install",
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"eslint"
],
".env*": [
"git rm --cached"
]
}
}