forked from dydxfoundation/governance-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.42 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
{
"name": "@dydxfoundation/governance",
"version": "1.0.4",
"description": "dYdX governance smart contracts",
"main": "dist/src/index.js",
"scripts": {
"clean": "rm -rf artifacts cache dist types",
"compile": "SKIP_LOAD=true TS_NODE_TRANSPILE_ONLY=1 npx hardhat compile",
"coverage": "SKIP_LOAD=true TS_NODE_TRANSPILE_ONLY=1 npx hardhat coverage",
"abi": "SKIP_LOAD=true TS_NODE_TRANSPILE_ONLY=1 npx hardhat export-abi",
"fix": "npm run lint -- --fix",
"lint": "eslint --ext .ts,.js .",
"test": "SKIP_LOAD=true TS_NODE_TRANSPILE_ONLY=1 npx hardhat test",
"test:full": "STAKING_TESTS_CHECK_INVARIANTS=true HARDHAT_SIMULATE_AFFECTED_STAKERS=99 npm run test",
"test:fork": "FORK_MAINNET=true npm run test:full"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dydxfoundation/governance-contracts.git"
},
"keywords": [
"dydx",
"ethereum"
],
"author": "dYdX Foundation",
"bugs": {
"url": "https://github.com/dydxfoundation/governance-contracts/issues"
},
"homepage": "https://github.com/dydxfoundation/governance-contracts#readme",
"files": [
"/dist"
],
"dependencies": {
"@chainlink/contracts": "^0.2.1",
"axios": "^0.24.0",
"cids": "^1.1.9",
"dotenv": "^10.0.0",
"ethereum-multicall": "^2.9.0",
"graphql": "^16.2.0",
"hardhat-abi-exporter": "^2.4.0",
"isomorphic-unfetch": "^3.1.0",
"urql": "^2.0.6"
},
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.1.0",
"@typechain/hardhat": "^2.3.0",
"@types/dirty-chai": "^2.0.2",
"@types/lodash": "^4.14.172",
"@types/luxon": "^2.0.4",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"dirty-chai": "^2.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-no-only-tests": "^2.6.0",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.4.0",
"hardhat": "^2.17.2",
"lodash": "^4.17.21",
"luxon": "^2.0.2",
"reflect-metadata": "^0.1.13",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.9.1",
"typechain": "^5.1.2",
"typescript": "^4.4.3"
}
}