-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "yaaas",
"version": "0.1.4",
"description": "Yet Another API for Anime and Stuff",
"scripts": {
"start": "node dist/index.js",
"build": "rimraf dist && tsc",
"dev": "nodemon src/index.ts",
"lint": "eslint --report-unused-disable-directives",
"format": "prettier --write ."
},
"homepage": "https://codeberg.org/Aerysh/yaaas",
"author": "Ahmad Azwar Annas <ahmadazw2@gmail.com>",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@types/node": "^20.14.12",
"eslint": "~9.8.0",
"eslint-plugin-import-x": "^3.1.0",
"lefthook": "^1.7.9",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "7.17.0"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.0.1",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"puppeteer": "^22.14.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
}
}