-
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) · 896 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 896 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": "backend_1",
"version": "1.0.0",
"description": "Primer Servidor con Express",
"main": "app.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Emmanu2288/Backend-I.git"
},
"keywords": [
"servidor"
],
"author": "Emmanuel Alejandro Lopez Vergara",
"license": "MIT",
"bugs": {
"url": "https://github.com/Emmanu2288/Backend-I/issues"
},
"homepage": "https://github.com/Emmanu2288/Backend-I#readme",
"dependencies": {
"bootstrap": "^5.3.0",
"express": "^5.2.1",
"express-handlebars": "8.0.5",
"mongoose": "^9.2.2",
"mongoose-paginate-v2": "^1.9.1",
"multer": "2.0.2",
"socket.io": "^4.8.3"
},
"devDependencies": {
"nodemon": "3.1.11"
}
}