-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 832 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 832 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": "backend_burger_express",
"version": "1.0.0",
"description": "Capstone Project TTP",
"main": "index.js",
"scripts": {
"start": "node server/seed.js & node server/index.js",
"dev": "nodemon server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxyedid/Backend_Burger_Express.git"
},
"author": "Max Yedid",
"license": "ISC",
"bugs": {
"url": "https://github.com/maxyedid/Backend_Burger_Express/issues"
},
"homepage": "https://github.com/maxyedid/Backend_Burger_Express#readme",
"dependencies": {
"chalk": "^5.0.0",
"config": "^3.3.7",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"sequelize": "^6.14.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}