-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 KB
/
package.json
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
{
"name": "melancong-api",
"version": "1.0.0",
"description": "Melancong-API using Express and Firebase",
"type": "module",
"main": "src/app.js",
"author": "Indra Yana <[email protected]>",
"license": "MIT",
"engines": {
"node": "18"
},
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"lint": "eslint .",
"deploy": "firebase deploy --only functions"
},
"dependencies": {
"@google/generative-ai": "^0.16.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"firebase": "^10.12.2",
"firebase-admin": "^12.2.0",
"firebase-functions": "^4.0.1",
"googleapis": "^144.0.0",
"helmet": "^7.1.0",
"http-status": "^1.7.4",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"uuid": "^10.0.0",
"winston": "^3.13.1"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"nodemon": "^3.1.4"
}
}