-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 2.07 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "renvm-tracker",
"version": "1.0.0",
"description": "Track RenVM volume across time",
"main": "./dist/index.js",
"repository": "https://github.com/renproject/renvm-tracker",
"author": "renproject",
"license": "MIT",
"scripts": {
"build": "yarn tsc",
"test": "nyc ts-mocha --sort --exit --timeout 180000 --paths -p ./tsconfig.json ./test/*.spec.ts ./test/**/*.spec.ts",
"start": "(. ./.env); yarn build && node dist/index.js",
"run:generate-historic": "(. ./.env); yarn build && node ./dist/tracker/historic/fetchEvents/historic.js",
"run:sort-events": "(. ./.env); yarn build && node ./dist/tracker/historic/fetchEvents/sortEvents.js",
"run:convert-fees": "(. ./.env); yarn build && node ./dist/tracker/historic/fetchEvents/convertFees.js"
},
"dependencies": {
"@renproject/chains-ethereum": "^2.4.7",
"@renproject/chains-solana": "^2.4.7",
"@renproject/interfaces": "^2.4.7",
"@renproject/rpc": "^2.4.7",
"@solana/web3.js": "^1.21.0",
"@types/compression": "^1.7.1",
"@types/node": "^14.11.5",
"@types/unzipper": "^0.10.4",
"apollo-server-core": "^3.1.2",
"apollo-server-express": "^3.0.2",
"bignumber.js": "^9.0.1",
"bn.js": "^5.2.0",
"chalk": "^4.1.0",
"class-validator": "^0.13.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"immutable": "^4.0.0-rc.12",
"moment": "^2.29.1",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.0",
"type-graphql": "^1.0.0",
"typeorm": "^0.2.28",
"typescript": "^4.0.3",
"unzipper": "^0.10.11",
"web3": "^1.4.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"ts-mocha": "^8.0.0"
},
"prettier": {
"tabWidth": 4
}
}