-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
28 lines (28 loc) · 903 Bytes
/
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
{
"name": "instafood-server",
"version": "1.0.0",
"description": "A node.js web server that fetches data from a third-party (Swiggy) API and exposes it to a client (instafood) app via an HTTP endpoint.\"",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"build": "parcel build server.js --target node --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Learn-React-With-Harshi/instafood-server.git"
},
"author": "Harshitha SV",
"license": "ISC",
"bugs": {
"url": "https://github.com/Learn-React-With-Harshi/instafood-server/issues"
},
"homepage": "https://github.com/Learn-React-With-Harshi/instafood-server#readme",
"dependencies": {
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"express": "^4.18.2"
},
"devDependencies": {
"parcel-bundler": "^1.12.5"
}
}