-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.07 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
{
"name": "foodie",
"version": "1.0.0",
"description": "Food delivery application with client and server side implementation",
"main": "index.js",
"scripts": {
"install-client": "npm install --prefix foodie",
"install-server": "npm install --prefix server",
"install": "npm run install-client && npm run install-server",
"start-server": "npm run dev --prefix server",
"start-client": "npm start --prefix foodie",
"deploy": "npm run build --prefix client && npm start --prefix server",
"start-app": "npm run start-server & npm run start-client",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BenFaruna/foodie.git"
},
"keywords": [
"React",
"Express",
"Javascript",
"MondoDB",
"Javascript",
"API"
],
"author": "Bankole Michael, Benjamin Faruna, Joy Gundu, Oluwadamilola Oyeniya",
"license": "ISC",
"bugs": {
"url": "https://github.com/BenFaruna/foodie/issues"
},
"homepage": "https://github.com/BenFaruna/foodie#readme"
}