-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.45 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
{
"name": "gaming-platform",
"version": "1.1.0",
"description": "Smart-contracts for a casual Gaming Platform",
"main": "index.js",
"author": "Pedrojok01 <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lint:js": "eslint \"**/*.{js,ts}\"",
"lint:sol": "solhint \"contracts/**/*.sol\"",
"lint": "run-s lint:js lint:sol",
"fix:js": "eslint --fix \"**/*.{js,ts}\"",
"fix:sol": "solhint --fix \"contracts/**/*.sol\"",
"fix": "run-s fix:js fix:sol",
"prettier:js": "prettier --write \"**/*.{ts,js}\"",
"prettier:sol": "prettier --write \"**/*.sol\"",
"prettier": "run-s prettier:js prettier:sol",
"compile": "hardhat compile --show-stack-traces",
"test": "hardhat test --show-stack-traces",
"deploy": "hardhat run --network mumbai scripts/deploy.ts",
"flatten": "hardhat flatten-all --show-stack-traces",
"size": "hardhat size-contracts",
"doc": "hardhat docgen",
"cover": "hardhat coverage",
"slither": "slither ./contracts --solc-remaps @openzeppelin=node_modules/@openzeppelin --exclude naming-convention,external-function,low-level-calls --buidler-ignore-compile"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@openzeppelin/contracts": "^4.8.0",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.4",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.28.0",
"eslint-config-mocha": "^0.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.2",
"fs": "^0.0.1-security",
"glob": "^8.0.3",
"hardhat": "^2.12.3",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.9",
"lodash.merge": "^4.6.2",
"mocha": "^10.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"prettier-plugin-solidity": "^1.0.0",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.3"
}
}