-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1022 Bytes
/
package.json
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
{
"name": "foodtrip-api",
"version": "1.0.0",
"description": " A REST API built with Express.js and MySQL using Sequelize ORM for FoodTrip Web Application. ",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polekstulod/foodtrip-api.git"
},
"keywords": [
"nodejs",
"express",
"sequelize",
"mysql2",
"jwt",
"restapi"
],
"author": "James Paul L. Tulod",
"license": "ISC",
"bugs": {
"url": "https://github.com/polekstulod/foodtrip-api/issues"
},
"homepage": "https://github.com/polekstulod/foodtrip-api#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"sequelize": "^6.29.0",
"sequelize-cli": "^6.4.1",
"sequelize-datatables": "^1.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}