-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 843 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
{
"name": "check-pair-with-liquidity",
"version": "1.0.0",
"description": "",
"license": "MIT",
"author": {
"name": "Rakibul Yeasin",
"email": "ryeasin03@gmail.com",
"url": "https://github.com/dreygur"
},
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --watch src src/index.ts",
"compile": "tsc",
"build": "esbuild --bundle src/index.ts --outdir=dist --platform=node --target=es2020 --minify",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.8.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@uniswap/sdk": "^3.0.3",
"@uniswap/v2-core": "^1.0.1",
"dotenv": "^16.3.1",
"web3": "^4.1.2"
},
"keywords": []
}