-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 987 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 987 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
38
39
40
41
42
43
44
45
46
{
"name": "planit-api",
"version": "1.0.0",
"description": "Backend API for PlanIT trip planning application",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest"
},
"keywords": [
"planit",
"travel",
"planning",
"api",
"express"
],
"author": "Rongbin Gu (@rongbin99)",
"license": "MIT",
"dependencies": {
"@google/genai": "^1.29.0",
"@types/pg": "^8.20.0",
"bcrypt": "^6.0.0",
"compression": "^1.8.1",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^4.22.1",
"express-rate-limit": "^8.3.2",
"helmet": "^8.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.3",
"morgan": "^1.10.1",
"multer": "^2.1.1",
"openai": "^4.104.0",
"pg": "^8.20.0",
"unsplash-js": "^7.0.20"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.14",
"supertest": "^7.2.2"
},
"engines": {
"node": ">=20.0.0"
}
}