-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.67 KB
/
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
45
46
47
48
49
50
{
"name": "restaurantbackendsystem",
"version": "1.0.0",
"description": "A public restaurant booking server, developed the back-end API with NodeJs , ExpressJs and ReactJs",
"main": "app/server.js",
"scripts": {
"start": "babel-node app/server.js",
"start:dev": "env-cmd -e development nodemon --exec babel-node app/server.js",
"create-dev-tables": "env-cmd -e development babel-node ./app/db/dev/dbConnection createAllTables",
"setup": "npm-run-all -p start create-dev-tables",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sammymutahigicheru/Restaurant-Booking-Backend-System.git"
},
"author": "Sammy Mutahi",
"license": "ISC",
"bugs": {
"url": "https://github.com/sammymutahigicheru/Restaurant-Booking-Backend-System/issues"
},
"homepage": "https://github.com/sammymutahigicheru/Restaurant-Booking-Backend-System#readme",
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-regenerator": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@hapi/joi": "^17.1.1",
"@std/esm": "^0.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"fancy-log": "^1.3.3",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"moment": "^2.25.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"pg": "^8.0.3"
},
"devDependencies": {}
}