26 lines
617 B
JSON
26 lines
617 B
JSON
{
|
|
"name": "roverWebsite",
|
|
"version": "1.0.5",
|
|
"description": "small web application to store routes for the rover",
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"dev": "nodemon app.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"ejs": "^3.1.6",
|
|
"express": "^4.18.2",
|
|
"express-ejs-layouts": "^2.5.1",
|
|
"nodemon": "^2.0.20",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"nodemonConfig": {
|
|
"ignore": [
|
|
"data/"
|
|
]
|
|
},
|
|
"type": "module"
|
|
}
|