Initial commit

This commit is contained in:
root
2023-04-27 14:46:18 +00:00
commit bbca1a86d1
35 changed files with 2418 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"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"
}