Initial commit

This commit is contained in:
Firepup Sixfifty 2023-10-01 18:39:12 -05:00
commit 208e773d65
62 changed files with 4545 additions and 0 deletions

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "nodejs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.3.5",
"ejs": "^3.1.9",
"express": "^4.18.2",
"ua-parser-js": "^1.0.33"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}