-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 3.11 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
{
"name": "rankify-contracts",
"version": "0.9.4",
"files": [
"abi",
"deployments",
"src",
"types",
"scripts",
"docs"
],
"description": "Contracts for rankify.it",
"scripts": {
"lint:fix": "eslint ./ --fix && pnpm run lint:sol:fix",
"lint": "eslint ./ && pnpm run lint:sol",
"upgrade:game:mumbai": "source .secrets/hh_mumbai.env && pnpm hardhat --network mumbai deploy --tags upgrade_game",
"test": "export NODE_ENV=TEST && pnpm hardhat test",
"test:parallel": "export NODE_ENV=TEST && pnpm hardhat test --parallel",
"build": "pnpm hardhat compile",
"lint:sol": "prettier --log-level warn --ignore-path .gitignore '{src,test}/**/*.sol' --check && solhint '{contracts,test}/**/*.sol'",
"lint:sol:fix": "prettier --log-level warn --ignore-path .gitignore '{src,test}/**/*.sol' --write",
"version": "pnpm build && changeset version",
"release": "pnpm build && changeset publish",
"anvil:deploy": "./playbook/utils/deploy-to-local-anvil.sh"
},
"keywords": [],
"author": "Tim Pechersky (@Peersky)",
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/buidler-web3": "^1.3.4",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@peeramid-labs/eds": "^2.0.0",
"@shopify/eslint-plugin": "^43.0.0",
"@solidstate/contracts": "^0.0.35",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^7.0.0",
"@typechain/web3-v1": "^6.0.1",
"@types/cli-table": "^0.3.0",
"@types/crypto-js": "^4.1.1",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/parser": "^7.16.0",
"chai": "^4.3.6",
"crypto-js": "^4.1.1",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-promise": "^6.4.0",
"eth-create2-calculator": "^1.1.5",
"ethers": "^5.6.6",
"globals": "^15.9.0",
"hardhat": "2.22.11",
"hardhat-abi-exporter": "^2.9.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.12.2",
"hardhat-diamond-abi": "^3.0.0",
"hardhat-tracer": "^3.1.0",
"keccak": "^3.0.1",
"mocha": "^10.0.0",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.6.2",
"solidity-coverage": "^0.8.5",
"solidity-docgen": "^0.6.0-beta.36",
"typechain": "^8.0.0",
"web3": "^1.8.2"
},
"dependencies": {
"@aragon/osx": "^1.3.0",
"@aragon/osx-ethers": "^1.3.0",
"@aragon/sdk-client": "^1.26.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^5.0.0",
"@safe-global/safe-contracts": "1.4.1-build.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.36",
"chalk": "^4.1.2",
"cli-table": "^0.3.11",
"hardhat-gas-reporter": "^1.0.9",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}