Add files via upload

This commit is contained in:
shafat-96
2025-02-24 23:28:22 +06:00
committed by GitHub
commit 9b4ddaed03
9 changed files with 60564 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "anime-api",
"version": "1.0.0",
"description": "API for fetching anime sources",
"main": "index.js",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"vercel-build": "echo hello"
},
"dependencies": {
"express": "^4.18.2",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"cors": "^2.8.5"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}