forked from fiskryeziu/anime-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
{
"name": "anime-api",
"version": "1.0.0",
"description": "hianime-api is a Node.js-based API that scrapes data from hianime.to",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"dev": "ts-node-dev --env-file=.env --respawn --transpile-only --exit-child --watch src src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fiskryeziu/hianime-api.git"
},
"author": "fiskryeziu",
"license": "ISC",
"bugs": {
"url": "https://github.com/fiskryeziu/hianime-api/issues"
},
"homepage": "https://github.com/fiskryeziu/hianime-api#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/morgan": "^1.9.9",
"@types/node": "^22.5.4",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2"
},
"dependencies": {
"cheerio": "^1.0.0",
"express": "^4.21.0",
"morgan": "^1.10.0",
"node-cache": "^5.1.2"
}
}