-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "uniswap-watcher",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run clean && node -r esm index.js > .log 2>&1 &",
"debugStart": "DEBUG=true node -r esm index.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"clean": "rm -f *.cache && rm -f .log"
},
"author": "",
"license": "ISC",
"dependencies": {
"abi-decoder": "^2.3.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"aws-cloudwatch-log": "^0.1.2",
"aws-sdk": "^2.817.0",
"babel-jest": "^26.6.3",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
"node-fetch": "^2.6.1",
"node-file-cache": "^1.0.2",
"redis": "^3.0.2",
"twit": "^2.2.11",
"web3": "^1.3.1",
"web3-eth-abi": "^1.3.1",
"web3-utils": "^1.3.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"jest": "^26.6.3"
}
}