-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "attack",
"version": "1.0.0",
"dependencies": {
"@openzeppelin/contracts": "^4.1.0"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.11",
"@truffle/contract": "^4.3.19",
"@truffle/hdwallet-provider": "^1.4.0",
"chai": "^4.3.4",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5"
},
"scripts": {
"build": "truffle compile",
"console": "truffle console",
"ropsten:deploy": "truffle --network ropsten deploy",
"mainnet:deploy": "truffle --network mainnet deploy",
"develop": "truffle develop",
"test:local": "truffle test --network develop",
"test": "truffle test --network development",
"prettier": "prettier --write .",
"lint": "yarn prettier && solhint -c .solhint.json contracts/**/*.sol"
},
"keywords": [
"ethereum",
"solidity",
"assembly"
],
"author": "[email protected]",
"license": "MIT",
"description": "Solidity Game - Attack"
}