-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "gogoanime-api",
"version": "0.0.5",
"description": "GoGoAnime Scrapper API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/GyanendroKh/gogoanime-api",
"author": "GyanendroKh",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint-staged": "lint-staged",
"docs": "typedoc src/index.ts --excludeInternal --theme node_modules/typedoc-darker-theme/bin/default/"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint --fix"
],
"{*.json,.{babelrc,eslintrc,prettierrc,stylelintrc}}": [
"prettier --write"
]
},
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typedoc": "^0.20.36",
"typedoc-darker-theme": "^1.1.5",
"typescript": "^4.2.4"
}
}