-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 774 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 774 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
{
"name": "uber-mini-ride-sharing",
"version": "1.0.0",
"description": "Complete Ride Sharing Matching System demonstrating DSA concepts with Graphs, Dijkstra, Priority Queues, and more",
"main": "backend/server.js",
"scripts": {
"start": "node backend/server.js",
"dev": "nodemon backend/server.js",
"build": "node-gyp rebuild",
"install": "node-gyp rebuild"
},
"keywords": [
"ride-sharing",
"uber",
"dsa",
"dijkstra",
"graphs",
"algorithms"
],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"body-parser": "^1.20.2",
"uuid": "^9.0.0",
"node-addon-api": "^7.0.0",
"node-gyp": "^10.0.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}