forked from paraswap/paraswap-volume-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
60
61
62
63
64
65
{
"name": "volume-tracker",
"version": "1.0.0",
"description": "A service to track market maker volumes",
"main": "index.js",
"repository": "https://github.com/paraswap/volume-tracker.git",
"author": "Paraswap <[email protected]>",
"private": true,
"scripts": {
"dev": "NODE_ENV=development nodemon",
"build": "NODE_ENV=production tsc",
"start": "NODE_ENV=production && node ./dist",
"store-airdrop-data": "NODE_ENV=development ts-node scripts/store-airdrop-data.ts"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/bignumber.js": "5.0.0",
"@types/compression": "1.7.0",
"@types/cookie-parser": "1.4.2",
"@types/express": "4.17.11",
"@types/lodash": "4.14.168",
"@types/node": "14.14.41",
"@types/stoppable": "1.1.1",
"@types/validator": "13.6.6",
"husky": "7.0.4",
"nodemon": "2.0.14",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"typescript": "4.4.4"
},
"dependencies": {
"@ethersproject/abi": "5.5.0",
"@ethersproject/address": "5.5.0",
"@ethersproject/bignumber": "5.5.0",
"@ethersproject/contracts": "5.5.0",
"@ethersproject/providers": "5.5.0",
"@godaddy/terminus": "4.9.0",
"@types/pg": "^8.6.1",
"axios": "0.24.0",
"bignumber.js": "9.0.1",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"dotenv": "10.0.0",
"express": "4.17.1",
"lodash": "4.17.21",
"log4js": "6.3.0",
"moment": "2.29.1",
"newrelic": "8.5.0",
"parse-duration": "1.0.2",
"pg": "8.7.1",
"pg-hstore": "2.3.4",
"reflect-metadata": "0.1.13",
"sequelize": "6.8.0",
"sequelize-typescript": "2.1.1",
"stoppable": "1.1.0",
"ts-node": "10.4.0",
"ts-retry-promise": "^0.6.0"
}
}