-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 3.12 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
{
"name": "taikai-contracts-v3",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/taikai/taikai-contracts-v3.git"
},
"files": [
"artifacts",
"scripts",
"README.md"
],
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test --network hardhat",
"solhint": "npx hardhat check",
"doc": "npx hardhat docgen",
"test:gas": "REPORT_GAS=true npx hardhat test",
"test:coverage": "REPORT_GAS=true npx hardhat coverage",
"contract:size": "npx hardhat size-contracts",
"slither": "npx slither --config-file ./slither.config.json .",
"prettier": "npx prettier --plugin=prettier-plugin-solidity --config .prettierrc.json --write 'contracts/**/*.sol' 'scripts/**/*.ts' 'test/**/*.ts'",
"prepublishOnly": "npm run build",
"deploy:local": "npx hardhat run --network local scripts/deploy.ts",
"deploy:vp": "npx hardhat run --network vp scripts/deploy.ts",
"deploy:eden": "npx hardhat run --network eden scripts/deploy.ts",
"deploy:gaia": "npx hardhat run --network gaia scripts/deploy.ts",
"deploy:eva": "npx hardhat run --network eva scripts/deploy.ts",
"deploy:atena": "npx hardhat run --network atena scripts/deploy.ts",
"deploy:heras": "npx hardhat run --network heras scripts/deploy.ts",
"deploy:polygon": "npx hardhat run --network polygon scripts/deploy.ts",
"deploy:mumbai": "npx hardhat run --network mumbai scripts/deploy.ts",
"ganache:dev": "ganache -h 0.0.0.0 -p 8545 -a 50 -s 0x6d2119524d65ea0b15b214ef260d3acdf8ca0ec6ec68045b5785d970f5ad97bd3d0025d212e625a8a21920852cc165c10faa6d8387a0c2530d1ffc0d265d92935749"
},
"author": "Helder Vasconcelos <[email protected]>",
"contributors": [
{
"name": "Helder Vasconcelos",
"email": "[email protected]"
}
],
"license": "ISC",
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.3",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.14",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"chai": "^4.3.7",
"dotenv": "^16.4.5",
"eslint": "^8.29.0",
"ethers": "^5.7.2",
"ganache": "^7.5.0",
"hardhat": "^2.12.3",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.10",
"hardhat-tracer": "^2.7.0",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typechain": "^8.1.1",
"typescript": "^4.9.4",
"words-to-numbers": "^1.5.1"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.0"
}
}