-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "itchio-godot-scraper",
"version": "1.0.0",
"description": "A scraper for Godot games hosted on https://itch.io",
"keywords": [
"scraper",
"itch",
"itchio",
"godot",
"engine",
"api"
],
"homepage": "https://github.com/hiulit/itchio-godot-scraper",
"bugs": {
"url": "https://github.com/hiulit/itchio-godot-scraper/issues"
},
"author": "hiulit",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/hiulit/itchio-godot-scraper.git"
},
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon index.js",
"update-games": "node update-games.js"
},
"dependencies": {
"chart.js": "^3.7.1",
"chartjs-node-canvas": "^4.1.6",
"chartjs-plugin-datalabels": "^2.0.0",
"cheerio": "^1.0.0-rc.10",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jimp": "^0.16.1",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.16",
"request": "^2.88.2",
"twitter-api-v2": "^1.12.0"
},
"engines": {
"node": "16.x"
}
}