-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
37 lines (37 loc) · 893 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
{
"name": "pool-sniper",
"version": "1.0.0",
"description": "Snipes Uniswap V2 pools on creation",
"main": "dist/app.js",
"scripts": {
"dev": "ts-node src/app.ts",
"start": "tsc && node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"uniswap",
"v2",
"pool",
"sniper"
],
"author": "Anish Agnihotri",
"license": "Unlicense",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^16.11.1",
"babel-eslint": "^10.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"patch-package": "^6.4.7",
"prettier": "^2.4.1",
"ts-node": "^10.3.0",
"typescript": "^4.4.4",
"winston": "^3.3.3"
},
"dependencies": {
"dotenv": "^10.0.0",
"ethers": "^5.4.7",
"simple-uniswap-sdk": "^3.6.2"
}
}