-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 964 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
{
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"mariadb": "^3.2.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.6.5",
"sequelize": "^6.37.2"
},
"name": "rental_hub",
"description": "This is a web application that allows users to rent out their items to other users. Users can also rent items from other users. This application is built using the Express framework and uses a MariaDB database. The application is deployed on Heroku and can be accessed [here](https://rental-hub.herokuapp.com/).",
"version": "0.1.1",
"main": "index.js",
"type": "module",
"scripts": {
"test": "test",
"start": "node app.js",
"dev": "nodemon app.js"
},
"keywords": [
"rental",
"property",
"management"
],
"author": "Hezekiah Elisha",
"license": "ISC",
"devDependencies": {
"sequelize-cli": "^6.6.2"
}
}