-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 4.04 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
{
"name": "vanilla-juicenet",
"version": "2.0.0",
"description": "Smart contracts for Vanilla Juicenet",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm run generate:typechain",
"test": "pnpx hardhat test",
"format:js": "eslint --fix test/ utils/ hardhat/ deploy/",
"format:sol": "prettier --write 'contracts/**/*.sol'",
"lint:js": "eslint test/ utils/ hardhat/ deploy/",
"lint:sol": "prettier --check 'contracts/**/*.sol' && solhint --max-warnings 0 'contracts/**/*.sol'",
"compile:sol": "pnpx hardhat compile --config hardhat.base.ts",
"compile:clean:sol": "pnpx hardhat clean --config hardhat.base.ts && pnpx hardhat compile --config hardhat.base.ts",
"coverage:sol": "pnpx hardhat --show-stack-traces coverage",
"node:mainnet-fork": "pnpm run compile:clean:sol && FORK=polygon pnpx hardhat node --verbose --fork-deployments polygon --as-network localhost",
"node:testnet-fork": "pnpm run compile:clean:sol && FORK=mumbai pnpx hardhat node --verbose --fork-deployments mumbai --as-network localhost",
"deploy:goerli": "pnpm run compile:clean:sol && pnpx hardhat --network goerli deploy",
"deploy:ropsten": "pnpm run compile:clean:sol && pnpx hardhat --network ropsten deploy",
"deploy:rinkeby": "pnpm run compile:clean:sol && pnpx hardhat --network rinkeby deploy",
"deploy:mumbai": "pnpm run compile:clean:sol && pnpx hardhat --network mumbai deploy",
"node:test-accounts": "pnpx hardhat test-accounts",
"generate:oz-typechain": "pnpx typechain --target ethers-v5 --out-dir typechain/openzeppelin \"./artifacts/@openzeppelin/**/+([a-zA-Z0-9_]).json\"",
"generate:typechain-wo-hardhat": "pnpx typechain --target ethers-v5 --out-dir typechain/juicenet \"./artifacts/contracts/**/+([a-zA-Z0-9_]).json\"",
"generate:typechain": "pnpm run generate:typechain-wo-hardhat && pnpm run generate:oz-typechain"
},
"author": "Vanilla Team",
"license": "GPL-3.0-or-later",
"repository": {
"url": "https://github.com/vanilladefi/juicenet"
},
"devDependencies": {
"@ethereum-waffle/chai": "^3.4.1",
"@ethersproject/abi": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/hardware-wallets": "^5.6.0",
"@ethersproject/providers": "^5.5.1",
"@gnosis.pm/safe-ethers-adapters": "^0.1.0-alpha.8",
"@gnosis.pm/safe-ethers-lib": "^1.0.0",
"@gnosis.pm/safe-core-sdk": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts-upgradeable": "^4.4.2",
"@openzeppelin/contracts": "^4.4.2",
"@openzeppelin/upgrades-core": "^1.14.1",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^14.18.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.0",
"@uniswap/v3-sdk": "^3.8.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"decimal.js": "^10.3.1",
"dotenv": "^8.6.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"fast-check": "^2.20.0",
"hardhat": "^2.8.0",
"hardhat-deploy": "^0.11.0",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"mocha": "^9.1.3",
"mocha-chai-jest-snapshot": "^1.1.3",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solc": "^0.8.11",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.0-beta.0",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^5.2.0",
"typescript": "^4.5.4"
},
"resolutions": {
"@solidity-parser/parser": "^0.13.2"
},
"dependencies": {
"@openzeppelin/contracts": "4.4.0"
}
}