Added the shortener

This commit is contained in:
2022-07-19 21:20:23 +02:00
parent 0233a2866b
commit 2e16cfa2cb
8 changed files with 3911 additions and 0 deletions

23
ShortenerV1/package.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "sheepstarshortener",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.7"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mysql2": "^2.2.5",
"sequelize": "^6.6.2"
}
}