-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.26 KB
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
{
"name": "resturant",
"version": "1.0.0",
"description": "> Create full stack apps with React/Redux and Express. Run your client and server with a single command",
"main": "server.js",
"scripts": {
"client-install": "cd client && npm install",
"customerClient-install": "cd customerClient && npm install",
"start": "node server.js",
"server": "env-cmd -f ./.env nodemon server.js",
"client": "npm start --prefix client",
"customerClient": "npm start --prefix customerClient",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"customer-dev": "concurrently \"npm run server\" \"npm run customerClient\""
},
"author": "",
"license": "MIT",
"devDependencies": {
"env-cmd": "^10.0.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bootstrap": "^4.4.1",
"concurrently": "^4.1.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.5",
"nodemon": "^1.19.1",
"react-router-dom": "^5.1.2",
"socket.io": "^2.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FatimaMabrouk/restaurantApp.git"
},
"bugs": {
"url": "https://github.com/FatimaMabrouk/restaurantApp/issues"
},
"homepage": "https://github.com/FatimaMabrouk/restaurantApp#readme"
}