-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "uniswap-v3-incentives",
"version": "1.0.0",
"main": "src/index.ts",
"author": "picodes <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc -p .",
"start": "node ./build/index.js",
"run": "nodemon src/index.ts",
"gcp-build": "yarn build",
"deploy": "gcloud app deploy"
},
"dependencies": {
"@angleprotocol/sdk": "^1.0.109",
"@octokit/rest": "^19.0.4",
"@pinata/sdk": "^1.1.26",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/v3-sdk": "^3.8.3",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"ethers": "^5.6.9",
"express": "^4.18.1",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.32",
"moment": "^2.29.4",
"web3.storage": "^4.4.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/graceful-fs": "^4.1.5",
"@types/node": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}