-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
55 lines (55 loc) · 1.73 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
{
"name": "twitter-crypto-bot",
"version": "2.0.1",
"description": "This is a Twitter bot that tweets about cryptocurrencies prices every certain amount of minutes",
"main": "build/index.js",
"scripts": {
"start": "npm run dev",
"build": "tsc",
"dev": "nodemon",
"clean": "rm -rf ./build/* ",
"prod": "npm run build && npm run start:prod",
"start:prod": "node ./build/index.js",
"lint": "eslint src && prettier --check src",
"lint:fix": "eslint src --fix && prettier --write src"
},
"dependencies": {
"axios": "^0.21.1",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"tslib": "^2.2.0",
"twit": "^2.2.11"
},
"devDependencies": {
"@types/node": "^18.11.11",
"@types/twit": "^2.2.28",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/totigm/twitter-crypto-bot.git"
},
"keywords": [
"crypto",
"twitter",
"bot"
],
"author": "Toti Muñoz",
"license": "MIT",
"homepage": "https://github.com/totigm/twitter-crypto-bot#readme",
"bugs": {
"url": "https://github.com/totigm/twitter-crypto-bot/issues"
}
}