-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 777 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 777 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
{
"name": "node_restful_api_shop",
"version": "1.0.0",
"description": "A Node.js RESTful API Tutorial Project (Build a simple shop API)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --trace-warnings server.js"
},
"keywords": [
"node",
"restful",
"api"
],
"author": "Teddy Kwak",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.12.5",
"morgan": "^1.9.1",
"multer": "^1.4.1"
},
"devDependencies": {
"nodemon": "^1.18.10",
"swagger-jsdoc": "6.0.0",
"swagger-ui-express": "^4.1.6"
}
}