diff options
| author | Ritesh Ghosh <[email protected]> | 2023-08-02 13:22:29 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2023-08-02 13:22:29 +0530 |
| commit | f01602ab863cd862bd0f5bd76ba248bf93834c48 (patch) | |
| tree | c5d72e9e3d02ff42af4751945ce8e76f0e8e2e7f | |
| parent | 1dc79d1b113ef14ffffaa8b8a5aa7d475b2a45e8 (diff) | |
| download | aniwatch-api-f01602ab863cd862bd0f5bd76ba248bf93834c48.tar.xz aniwatch-api-f01602ab863cd862bd0f5bd76ba248bf93834c48.zip | |
build: added husky and other dependencies
| -rw-r--r-- | package.json | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package.json b/package.json index 7685382..4a7743f 100644 --- a/package.json +++ b/package.json @@ -3,11 +3,11 @@ "version": "1.0.0", "description": "", "main": "dist/server.js", - "type": "module", "scripts": { "start": "node dist/server.js", "dev": "nodemon src/server.ts", "build": "tsc -p tsconfig.json", + "prepare": "husky install", "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { @@ -25,6 +25,8 @@ "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", "http-errors": "^2.0.0", @@ -37,6 +39,7 @@ "@types/node": "^20.4.5", "nodemon": "^3.0.1", "ts-node": "^10.9.1", - "typescript": "^5.1.6" + "typescript": "^5.1.6", + "husky": "^8.0.0" } }
\ No newline at end of file |
