-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "batman-api",
"version": "1.0.0",
"description": "A Node.js Back-End application built with Express.js and Mongoose, using MongoDB to store data.",
"main": "server.js",
"type": "module",
"scripts": {
"start": "nodemon server.js",
"start:prod": "NODE_ENV=production nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedrocasteli/Batman-API.git"
},
"keywords": [
"node",
"express",
"mongoose",
"mongo",
"mongodb",
"backend",
"javascript"
],
"author": "Pedro Marchetti Casteli",
"license": "ISC",
"bugs": {
"url": "https://github.com/pedrocasteli/Batman-API/issues"
},
"homepage": "https://github.com/pedrocasteli/Batman-API#readme",
"dependencies": {
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mongoose": "^6.5.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"nodemon": "^2.0.19"
},
"engines": {
"node": ">=16.0.0"
}
}