fix(config): Customize details in package.json

This commit is contained in:
buzzcode2007 2025-03-21 06:18:34 +00:00
parent 711a8bc299
commit 19f55bfaa2

View file

@ -1,16 +1,25 @@
{
"name": "shorturl",
"version": "0.0.3",
"description": "API project for freeCodeCamp",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1"
},
"license": "MIT"
"name": "shorturl",
"version": "0.0.1",
"description": "A FOSS link shortener for your own! (based on FCC's curriculum)",
"main": "index.js",
"scripts": {
"start": "node --watch index.js"
},
"repository": {
"type": "git",
"url": "https://codeberg.org/buzzcode2007/FCC-Project-URLShortener.git"
},
"bugs": {
"url": "https://codeberg.org/buzzcode2007/FCC-Project-URLShortener/issues"
},
"homepage": "https://codeberg.org/buzzcode2007/FCC-Project-URLShortener#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.11.15"
},
"license": "BSD"
}