-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 1004 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
37
38
39
{
"name": "chronodose_twitter",
"version": "1.0.0",
"main": "chronobot.js",
"scripts": {
"build": "tsc",
"start": "node dist/chronobot.js",
"tw-login": "node dist/login.js",
"test": "eslint 'src/**/*.ts'",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --fix"
},
"keywords": [
"twitter",
"bot",
"chronodose",
"COVID19"
],
"author": "plhery (https://twitter.com/plhery)",
"license": "apache-2.0",
"description": "Twitter bot for Chronodoses of COVID19",
"dependencies": {
"axios": "^0.21.1",
"dayjs": "^1.10.4",
"dotenv": "^9.0.2",
"staticmaps": "^1.4.4",
"twitter-api-v2": "^1.1.0"
},
"devDependencies": {
"@types/node": "^15.0.2",
"@types/staticmaps": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
}
}