fix: rename server.js to index.js for replit debugging (#44)

This commit is contained in:
Kealan Parr 2022-05-05 14:29:29 +01:00 committed by GitHub
parent 1ca1892f7c
commit 07ee3abc27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

View File

@ -2,10 +2,10 @@
"name": "shorturl", "name": "shorturl",
"version": "0.0.3", "version": "0.0.3",
"description": "API project for freeCodeCamp", "description": "API project for freeCodeCamp",
"main": "server.js", "main": "index.js",
"scripts": { "scripts": {
"start": "node server.js", "start": "node index.js",
"dev": "nodemon server.js" "dev": "nodemon index.js"
}, },
"dependencies": { "dependencies": {
"body-parser": "^1.19.0", "body-parser": "^1.19.0",