-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 793 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "munch",
"version": "1.0.0",
"description": "Web App to detect food and find restaurants",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"concurrently": "^8.2.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:backend": "cd API && npm start",
"start:frontend": "cd vite-project && npm run dev",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"install-all": "npm install && cd vite-project && npm install && cd ../API && npm install",
"build:frontend": "cd vite-project && npm install && vite build",
"build:backend": "cd API && npm install && npm start",
"build": "npm run build:frontend && npm run build:backend"
},
"author": "",
"license": "ISC"
}