-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 890 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
34
35
36
37
38
{
"name": "food-desk-server",
"version": "1.0.0",
"main": "server.js",
"engines": {
"node": "16.13.0",
"npm": "8.1.0"
},
"scripts": {
"start": "node server.js",
"test": "nodemon server.js",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlayKharadi/food-desk.git"
},
"author": "Alay Kharadi",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlayKharadi/food-desk/issues"
},
"homepage": "https://github.com/AlayKharadi/food-desk#readme",
"dependencies": {
"@popperjs/core": "^2.10.2",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.1.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"pg": "^8.7.1",
"pg-pool": "^3.4.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}