-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.12 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
{
"name": "interguide-backend",
"version": "1.0.0",
"description": "Backend Server",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlonsoGaray/interguide-back.git"
},
"keywords": [
"express",
"node",
"mongodb",
"socketio"
],
"author": "Alonso Garay",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlonsoGaray/interguide-back/issues"
},
"homepage": "https://github.com/AlonsoGaray/interguide-back#readme",
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"nodemon": "^2.0.15"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.28.1",
"composable-middleware": "^0.3.0",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.1",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"pino": "^7.6.5",
"pino-pretty": "^7.5.1",
"socket.io": "^4.4.1"
}
}