-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 862 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
{
"name": "uniswap-example",
"version": "1.0.0",
"description": "This is an example of using the Uniswap SDK in a Node.js app",
"main": "index.js",
"scripts": {
"start": "npx ts-node example.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eavelasquez/uniswap-example.git"
},
"author": "Esteban Velasquez <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/eavelasquez/uniswap-example/issues"
},
"homepage": "https://github.com/eavelasquez/uniswap-example#readme",
"devDependencies": {
"@types/node": "^18.7.1",
"tslib": "^2.4.0"
},
"dependencies": {
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/v3-sdk": "^3.9.0",
"ethers": "^5.6.9",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}