-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
87 lines (87 loc) · 4.1 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
{
"name": "limbo",
"version": "1.0.0",
"description": "Token Preseeding Smart Contracts for Behodler.",
"main": "index.js",
"scripts": {
"typechain": "typechain --target=ethers-v5 'build/contracts/*.json' --out-dir 'typechain'",
"test": "npx hardhat test test/limbo.dao.*.test.ts && npx hardhat test test/limbo.test.ts && npx hardhat test test/proxy/*.test.ts",
"coverage": "HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat coverage",
"test:wargames": "npx hardhat test test/wargames/*",
"build:freshABI": "sudo touch private/results.txt && sudo rm -rf artifacts/* cache/* typechain/* typechain-types/ && yarn build && sudo chmod -R 777 artifacts/ && sudo chmod -R 777 cache/ && sudo chmod -R 777 typechain/ ",
"test:freshABI": "yarn build:freshABI && yarn test",
"build:debug": "sudo rm -rf build/ && truffle build && yarn typechain",
"build": "npx hardhat compile",
"docker:install": "rm -rf node_modules/* && touch yarn.lock && rm yarn.lock && docker-compose up install",
"node:dev": "npx hardhat node --export deployed.json",
"scripts:setup": "npx hardhat run --network localhost scripts/test-setup.ts",
"scripts:addresses": "npx hardhat run --network localhost scripts/collect-addresses.ts",
"setup:dev": "yarn scripts:addresses && yarn scripts:setup",
"dev": "hardhat --network localhost",
"update:contracts": "cp addresses.json ../LimboUI/src/constants/addresses",
"update:ui": "node -e 'setTimeout(()=>{},20000)' && yarn scripts:addresses && yarn scripts:setup && yarn update:contracts && rm -rf ../LimboUI/src/constants/contracts && cp -R build/contracts/ ../LimboUI/src/constants/contracts",
"deploy:local": "npx hardhat run scripts/testnet-deploy.ts",
"deploy:ropsten": "npx hardhat run --network ropsten scripts/testnet-deploy.ts",
"configureThreshold:ropsten": "npx hardhat run --network ropsten scripts/testnet-configure-threshold.ts",
"configurePerpetual:ropsten": "npx hardhat run --network ropsten scripts/testnet-configure-perpetual.ts",
"configure:ropsten": "yarn configureThreshold:ropsten && yarn configurePerpetual:ropsten",
"deploy:local2": "sudo touch scripts/testnet/addresses/hardhat.json && sudo rm scripts/testnet/addresses/hardhat.json && npx hardhat run scripts/testnet/orchestrate.ts",
"deploy:sepolia": "npx hardhat run --network sepolia scripts/deploy-all-sepolia.ts >SEPOLIA_LOGS.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WeiDaiEcosystem/limbo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WeiDaiEcosystem/limbo/issues"
},
"homepage": "https://github.com/WeiDaiEcosystem/limbo#readme",
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^12.20.47",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.6",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.2.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.6.0",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.20",
"ts-node": "^10.9.1",
"typechain": "^5.2.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@fastify/cors": "^8.2.1",
"@openzeppelin/contracts": "^4.8.0",
"@types/shelljs": "^0.8.11",
"dir-compare": "^4.0.0",
"hardhat": "^2.12.0",
"hardhat-abi-exporter": "^2.10.0",
"hardhat-deploy": "^0.10.5",
"mocha": "^10.0.0",
"shelljs": "^0.8.5",
"truffle-contract-size": "^2.0.1",
"web3": "^1.8.1"
}
}