-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.6 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
{
"name": "apod-bot",
"version": "1.2.0",
"description": "A social media bot that posts NASA's Astronomy Picture of the Day in HD",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"dev": "nodemon ./src/index.ts",
"prod-create": "pm2 start dist/index.js --name \"apod-bot\" -- --color && pm2 monit",
"prod": "pm2 start apod-bot",
"prod-monit": "pm2 start apod-bot && pm2 monit",
"build": "tsc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"astronomy",
"NASA",
"APOD",
"social media",
"Instagram",
"Twitter",
"bot"
],
"contributors": [
{
"name": "suvanl",
"url": "https://github.com/suvanl"
},
{
"name": "North3611",
"url": "https://github.com/North3611"
}
],
"license": "MIT",
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/cron": "^2.0.1",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/luxon": "^3.3.0",
"@types/sharp": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.4.0",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"common-tags": "^1.8.2",
"cron": "^2.3.0",
"fluent-ffmpeg": "^2.1.2",
"instagram-private-api": "^1.45.3",
"luxon": "^3.3.0",
"sharp": "^0.32.1",
"twitter-api-v2": "^1.12.3",
"ytdl-core": "^4.11.4"
}
}