-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1020 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
{
"name": "restaurant-dbms",
"version": "1.0.0",
"description": "Restaurant Database Management System Project done for 4th semester.",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saileshbro/restaurant-dbms.git"
},
"keywords": [
"DBMS",
"node",
"mysql"
],
"author": "Sailesh Dahal",
"license": "ISC",
"bugs": {
"url": "https://github.com/saileshbro/restaurant-dbms/issues"
},
"homepage": "https://github.com/saileshbro/restaurant-dbms#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.11.5",
"util": "^0.12.5",
"validator": "^13.12.0"
},
"devDependencies": {
"eslint": "^9.16.0",
"nodemon": "^3.1.4"
}
}