-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
145 lines (145 loc) · 4.93 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "@gooddollar/goodprotocol",
"version": "2.0.25-beta.8",
"description": "GoodDollar Protocol",
"engines": {
"node": ">=16.x"
},
"main": "dist/test-sdk/index.js",
"scripts": {
"prepack": "npm run minimize",
"build": "scripts/build.sh deploy",
"coverage:report": "COVERALLS_REPO_TOKEN='qiXNelh1HXMAsoPah9yRD2yG2WlqrDfLh' cat ../coverage/lcov.info coverage/lcov.info | coveralls",
"coverage": "CODE_COVERAGE=true hardhat --max-memory 6096 coverage",
"minimize": "./scripts/minimize.sh 'artifacts/contracts'",
"test": "hardhat test",
"test:parallel": "mocha --require hardhat/register --extension ts --recursive --parallel --exit",
"postinstall": "patch-package",
"compile": "hardhat compile",
"daoUpgrade": "hardhat run scripts/upgradeToV2/upgradeToV2.ts",
"deployOldDAO": "hardhat run scripts/test/localOldDaoDeploy.ts",
"runNode": "hardhat node &",
"testDAOUpgrade": "yarn runNode & yarn compile && yarn deployOldDAO --network develop-mainnet && yarn daoUpgrade --network develop-mainnet",
"testDAOUpgradeFuse": "yarn runNode & yarn compile && yarn deployOldDAO --network develop && yarn daoUpgrade --network develop",
"deployTestOld": "yarn compile && hardhat run scripts/test/singleOldDaoDeploy.ts --network dapptest && yarn daoUpgrade --network dapptest && yarn daoUpgrade --network dapptest-mainnet && hardhat run scripts/test/simulateInterest.ts --network dapptest",
"deployTest": "yarn compile && hardhat run scripts/deployFullDAO.ts --network dapptest && hardhat run scripts/deployFullDAO.ts --network dapptest-mainnet && hardhat run scripts/test/simulateInterest.ts --network dapptest",
"build:test-sdk": "tsc --build tsconfig.sdk.json"
},
"files": [
"artifacts/contracts",
"artifacts/abis",
"contracts",
"releases",
"scripts",
"yarn.lock",
"package.json",
"hardhat.config.ts",
"LICENSE",
"truffle-config.js",
"tsconfig.json",
"test",
"types",
"patches",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/GoodDollar/GoodProtocol.git"
},
"keywords": [
"UBI",
"basic",
"income",
"gooddollar",
"ethereum",
"smart",
"contracts"
],
"author": "GoodDollar Community <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GoodDollar/GoodProtocol/issues"
},
"homepage": "https://gooddollar.org",
"dependencies": {
"@gooddollar/goodcontracts": "^2.6.6",
"@jsier/retrier": "^1.2.4",
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@superfluid-finance/ethereum-contracts": "^1.8.1",
"@superfluid-finance/sdk-core": "^0.5.8",
"@typechain/hardhat": "^6.1.5",
"async-promise-pool": "^1.0.4",
"openzeppelin-solidity": "^4.3.2",
"patch-package": "latest",
"press-any-key": "^0.1.1",
"truffle-plugin-verify": "^0.6.1",
"truffle-source-verify": "^0.0.6"
},
"devDependencies": {
"@babel/core": "*",
"@babel/polyfill": "*",
"@babel/preset-env": "*",
"@babel/register": "*",
"@celo-tools/celo-ethers-wrapper": "^0.4.0",
"@gnosis.pm/safe-core-sdk": "^3.2.0",
"@gnosis.pm/safe-core-sdk-types": "^1.7.0",
"@gnosis.pm/safe-ethers-lib": "^1.7.0",
"@gnosis.pm/safe-service-client": "^1.4.0",
"@gooddollar/bridge-contracts": "1.0.14-beta.7",
"@mean-finance/uniswap-v3-oracle": "^1.0.3",
"@nomicfoundation/hardhat-chai-matchers": "1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-verify": "^2.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@swc/core": "1.3.96",
"@swc/helpers": "^0.3.16",
"@typechain/ethers-v5": "^11.1.1",
"@types/mocha": "*",
"@types/node": "*",
"@uniswap/v2-core": "*",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"bignumber.js": "*",
"bindings": "*",
"chai": "*",
"coveralls": "*",
"dotenv": "*",
"ethereum-block-by-date": "^1.4.9",
"ethereum-waffle": "3",
"ethers": "^5.7.2",
"ethers-eip712": "*",
"ethers-multicall": "^0.2.3",
"fs-extra": "9.0.0",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"hardhat": "^2.17.3",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-storage-layout": "^0.1.7",
"lodash": "^4.17.21",
"merkletreejs": "^0.3.9",
"mocha": "^9.1.2",
"mocha-lcov-reporter": "*",
"node-fetch": "*",
"node-jq": "*",
"prompt": "^1.3.0",
"regenerator-runtime": "^0.13.9",
"solhint": "*",
"solidity-coverage": "^0.8.4",
"truffle": "^5.11.5",
"truffle-hdwallet-provider": "*",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]",
"resolutions": {
"@swc/core": "1.3.96"
},
"overrides": {
"@swc/core": "1.3.96"
}
}