-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 759 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 759 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
{
"name": "projeto_javascript_01",
"version": "1.0.0",
"description": "first API with javaScript",
"main": "index.js",
"scripts": {
"start": "node index",
"dev": "nodemon index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nayahto/projeto_javaScript_01.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nayahto/projeto_javaScript_01/issues"
},
"homepage": "https://github.com/Nayahto/projeto_javaScript_01#readme",
"dependencies": {
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^6.8.1",
"prettier": "^2.8.1"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}