-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.12 KB
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
{
"name": "twitter-bots",
"author": "Spencer Corwin",
"description": "NodeJS Twitter bots",
"license": "UNLICENSED",
"scripts": {
"start": "tsc && node dist/index.js",
"deploy": "git push heroku master",
"lint:all": "eslint './*.ts'",
"prettier": "yarn run prettier --config .prettierrc --write \"./**/*\"",
"heroku-postbuild": "tsc"
},
"dependencies": {
"@types/cheerio": "0.22.13",
"@types/node": "12.7.1",
"@types/puppeteer": "1.19.0",
"@types/request-promise": "4.1.45",
"@types/twitter": "1.7.0",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"cheerio": "1.0.0-rc.2",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.17.0",
"exceljs": "^4.1.1",
"fs": "0.0.1-security",
"path": "0.12.7",
"prettier": "1.19.1",
"puppeteer": "1.11.0",
"ts-node": "8.3.0",
"typescript": "3.9.7"
}
}