-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.32 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
{
"name": "vocaloid-rankings-twitter-bot",
"version": "1.0.0",
"description": "Vocaloid songs ranking twitter bot, hourly updated tweets.",
"main": "dist/app.js",
"scripts": {
"start": "npx tsc && forever stopall && forever start -a -l ~/Documents/vocaloid-rankings-twitter-bot/logs/console.log -o ~/Documents/vocaloid-rankings-twitter-bot/logs/stdout.log -e ~/Documents/vocaloid-rankings-twitter-bot/logs/stderr.log ~/Documents/vocaloid-rankings-twitter-bot/dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilPikachu/vocaloid-rankings-twitter-bot.git"
},
"author": "ilPikachu",
"license": "MIT",
"bugs": {
"url": "https://github.com/ilPikachu/vocaloid-rankings-twitter-bot/issues"
},
"homepage": "https://github.com/ilPikachu/vocaloid-rankings-twitter-bot#readme",
"dependencies": {
"axios": "^0.21.1",
"forever": "^3.0.4",
"jsdom": "^16.5.3",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"mongodb": "^3.6.6",
"node-schedule": "^2.0.0",
"p-retry": "^4.5.0",
"twitter-lite": "^1.1.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/node": "^15.0.1",
"@types/node-schedule": "^1.3.1",
"@types/xml2js": "^0.4.8",
"chai": "^4.3.4",
"eslint": "^7.25.0",
"mocha": "^8.3.2",
"typescript": "^4.2.4"
}
}