-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 812 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 812 Bytes
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
{
"name": "pdf-qa-bot",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=20.0.0"
},
"main": "index.js",
"scripts": {
"test": "node --test server.test.js",
"lint": "eslint . --ext .js",
"build": "npm --prefix frontend run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"axios": "^1.11.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^17.4.2",
"express": "^5.1.0",
"express-rate-limit": "^8.5.2",
"express-slow-down": "^3.1.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"multer": "^2.0.2",
"rate-limit-redis": "^4.2.3",
"react-hot-toast": "^2.6.0",
"redis": "^4.7.1",
"zod": "^4.4.3"
},
"devDependencies": {
"eslint": "^8.57.0"
}
}