-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 902 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 902 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": "study-mate-api",
"version": "2.0.0",
"description": "create a api with node express mongodb mongoose jwt bcriptjs",
"keywords": [
"node",
"express",
"mongodb",
"jwt",
"bcriptjs"
],
"license": "ISC",
"author": "Polas Chandra Barmon",
"type": "commonjs",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "NODE_ENV=development nodemon server.js",
"production": "NODE_ENV=production nodemon server.js",
"debug": "node --inspect server.js"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.51.1",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.1.0",
"firebase-admin": "^13.6.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^7.0.0",
"mongoose": "^8.19.3",
"morgan": "^1.10.1",
"nodemon": "^3.1.10",
"qs": "^6.14.0",
"slugify": "^1.6.6"
}
}