forked from CipherYuvraj/Neon-Road-Ripper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 653 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 653 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": "smart-road-trip-planner",
"version": "1.0.0",
"description": "Interactive road trip planning application with map integration",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"road-trip",
"maps",
"travel",
"planning",
"route"
],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"dotenv": "^16.3.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"node-fetch": "^2.6.12"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=18.0.0"
}
}