-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
91 lines (91 loc) · 2.39 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "novel-scraper",
"version": "2.0.0",
"description": "",
"main": "server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"start:dev": "ts-node src/server.ts",
"watch:dev": "nodemon -L",
"docker:build": "docker build -t novel-scraper . --no-cache && docker image prune -f",
"docker:run": "docker run --name novel-scraper -p 3000:3000 novel-scraper",
"docker:stop": "docker rm -f novel-scraper",
"lint": "eslint \"src/**/*.ts\" --quiet --fix",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "npm run format && npm run lint"
},
"keywords": [
"API",
"Novel API",
"REST API",
"Light Novel API",
"Novel",
"Wuxia API",
"Wuxia",
"Light Novel"
],
"author": "kevin-umali",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/caching": "^8.3.0",
"@fastify/cors": "^8.5.0",
"@fastify/env": "^4.3.0",
"@fastify/etag": "^5.1.0",
"@fastify/helmet": "^11.1.1",
"@fastify/one-line-logger": "^1.2.0",
"@fastify/rate-limit": "^9.0.1",
"@fastify/sensible": "^5.5.0",
"@fastify/swagger": "^8.12.2",
"@fastify/swagger-ui": "^2.0.1",
"close-with-grace": "^1.2.0",
"dotenv": "^16.3.1",
"fastify": "^4.25.1",
"fastify-plugin": "^4.5.1",
"fastify-type-provider-zod": "^1.1.9",
"puppeteer": "^21.6.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --quiet --fix"
]
},
"engines": {
"node": "20.9.0"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"printWidth": 200,
"tabWidth": 2,
"endOfLine": "auto"
}
}