This repository has been archived on 2026-07-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
aniwatch-api/package.json
T
Conventional Changelog Action 539df96bda chore(release): v1.6.0 [skip ci]
2023-08-13 14:19:57 +00:00

49 lines
1.3 KiB
JSON

{
"name": "aniwatch-api",
"version": "1.6.0",
"description": "Node Express API for obtaining anime information from aniwatch",
"main": "ts-node src/server.ts",
"scripts": {
"start": "ts-node src/server.ts",
"dev": "nodemon src/server.ts",
"build": "tsc -p tsconfig.json",
"prepare": "husky install",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghoshRitesh12/aniwatch-api.git"
},
"bugs": {
"url": "https://github.com/ghoshRitesh12/aniwatch-api/issues"
},
"homepage": "https://github.com/ghoshRitesh12/aniwatch-api#readme",
"keywords": [
"anime",
"aniwatch"
],
"author": "https://github.com/ghoshRitesh12",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.9.0",
"http-errors": "^2.0.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.5.3",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.5",
"husky": "^8.0.0",
"jest": "^29.6.2",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}