Skip to content

Commit

Permalink
last
Browse files Browse the repository at this point in the history
  • Loading branch information
koikiss-dev committed Mar 25, 2023
1 parent 53e0ba9 commit 0b6e5f6
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 8 deletions.
15 changes: 13 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,19 @@
"series",
"manga"
],
"engines": {"node": "v18.12.0", "npm": "9.1.3"},
"engines": {
"node": "v18.12.0",
"npm": "9.1.3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/koikiss-dev/jimov_api"
},
"homepage": "https://github.com/koikiss-dev/jimov_api",
"dependencies": {
"axios": "^1.2.3",
"@types/cheerio": "^0.22.31",
"axios": "^1.3.4",
"body-parser": "^1.20.1",
"cheerio": "^1.0.0-rc.12",
"express": "^4.18.2",
Expand All @@ -40,11 +44,12 @@
"@tsconfig/recommended": "^1.0.2",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.8",
"dotenv": "^16.0.3",
"nodemon": "^2.0.20",
"npm-check-updates": "^16.6.2",
"pretty": "^2.0.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
}
}
}
2 changes: 1 addition & 1 deletion src/scraper/sites/anime/animeflv/AnimeFlv.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import axios from "axios";
import axios from 'axios'
import { load } from "cheerio";
import { Anime, Chronology } from "../../../../types/anime";
import { Episode, EpisodeServer } from "../../../../types/episode";
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"target": "es6",
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"importHelpers": true,
"importHelpers": false,
"jsx": "react",
"alwaysStrict": true,
"sourceMap": true,
Expand Down

2 comments on commit 0b6e5f6

@vercel
Copy link

@vercel vercel bot commented on 0b6e5f6 Mar 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 0b6e5f6 Mar 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.