-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
39 lines (39 loc) · 995 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": "tweetdrop",
"version": "1.0.0",
"description": "Generate dispersable airdrops from Twitter threads",
"main": "dist/app.js",
"scripts": {
"start": "ts-node src/app.ts",
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"followers": "ts-node src/extra/followers.ts"
},
"keywords": [
"tweet",
"airdrop",
"crypto",
"ethereum"
],
"author": "Anish Agnihotri",
"license": "GPLv3",
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"ethers": "^5.4.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/node": "^16.6.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
}
}