-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
98 lines (98 loc) · 3.74 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"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",
"build:grp": "NODE_ENV=production tsc --project scripts/gas-refund-program/tsconfig.json",
"start": "NODE_ENV=production && node ./dist",
"store-airdrop-data": "NODE_ENV=development ts-node scripts/store-airdrop-data.ts",
"gas-refund:dev:compute-gas-refund-save-db": "patch-package && NODE_ENV=development ts-node scripts/gas-refund-program/computeGasRefund",
"gas-refund:prod:compute-gas-refund-save-db": "node scripts/gas-refund-program/computeGasRefund.js",
"gas-refund:computeDistributionDataAndPersistDB": "patch-package && NODE_ENV=development ts-node scripts/gas-refund-program/distribution/computeDistributionDataAndPersistDB",
"gas-refund:computeDistributionDataAndPersistDB-epoch-47": "DISTRIBUTED_EPOCH=47 yarn gas-refund:computeDistributionDataAndPersistDB",
"gas-refund:computeDistributionFilesAndPersistIPFS": "patch-package && NODE_ENV=development ts-node scripts/gas-refund-program/distribution/computeDistributionFilesAndPersistIPFS",
"migrate:up": "source .env && DATABASE_URL=$DATABASE_URL npx sequelize-cli db:migrate # <- executes any new migrations that are not in sequalize meta table yet, sorted alphabetically",
"migrate:undo": "source .env && DATABASE_URL=$DATABASE_URL npx sequelize-cli db:migrate:undo # <- undoes the last migration from sequalize meta table, sorted alphabetically",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@pinata/sdk": "^2.1.0",
"@types/axios": "0.14.0",
"@types/bignumber.js": "5.0.0",
"@types/chance": "^1.1.3",
"@types/cls-hooked": "^4.3.3",
"@types/compression": "1.7.0",
"@types/cookie-parser": "1.4.2",
"@types/express": "4.17.11",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "4.14.168",
"@types/node": "14.14.41",
"@types/stoppable": "1.1.1",
"@types/validator": "13.6.6",
"husky": "7.0.4",
"jest": "^27.5.1",
"jest-chance": "^0.1.11",
"mkdirp": "^3.0.1",
"nodemon": "2.0.14",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"ts-jest": "^27.1.3",
"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",
"@snapshot-labs/snapshot.js": "^0.3.56",
"@types/pg": "^8.6.1",
"axios": "0.24.0",
"axios-cache-adapter": "^2.7.3",
"axios-curlirize": "1.3.7",
"axios-rate-limit": "^1.3.0",
"axios-retry": "^3.2.4",
"bignumber.js": "9.0.1",
"body-parser": "1.19.0",
"bottleneck": "^2.19.5",
"cls-hooked": "^4.2.2",
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"dotenv": "10.0.0",
"ethers": "^5.6.2",
"express": "4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "4.17.21",
"log4js": "6.3.0",
"merkletreejs": "^0.2.31",
"moment": "2.29.1",
"newrelic": "11.15.0",
"p-limit": "^3.1.0",
"p-memoize": "^4.0.4",
"parse-duration": "1.0.2",
"patch-package": "^6.4.7",
"pg": "8.7.1",
"pg-hstore": "2.3.4",
"quick-lru": "^5.1.1",
"reflect-metadata": "0.1.13",
"sequelize": "6.8.0",
"sequelize-typescript": "2.1.1",
"stoppable": "1.1.0",
"ts-essentials": "^9.1.2",
"ts-node": "10.4.0",
"ts-retry-promise": "^0.6.0"
}
}