-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 885 Bytes
/
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
{
"name": "crawler",
"version": "1.0.0",
"description": "A goganime crawler using bun",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"populate": "bun src/index.js",
"refresh": "bun src/refresh.js",
"crawl": "bun populate && bun refresh",
"server": "bun src/server.js",
"start": "node src/index.js && node src/refresh.js",
"cli": "bun src/cli.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"cheerio": "^1.0.0-rc.12",
"colors": "^1.4.0",
"commander": "^12.1.0",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongoose": "^8.5.1",
"puppeteer": "^22.14.0"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}