-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "homeless-poker",
"version": "0.3.0",
"description": "Poker without a house.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"compile": "truffle compile",
"deploy:test": "truffle deploy --network ropsten",
"console:test": "truffle console --network ropsten",
"lint": "solhint contracts/HomelessPoker.sol",
"migrate": "truffle migrate",
"rpc": "truffle develop",
"start": "babel-node client/src/index.js",
"test": "truffle test"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"dotenv": "^6.2.0",
"eth-gas-reporter": "^0.1.12",
"husky": "^1.3.1",
"solhint": "^1.4.1",
"truffle-assertions": "^0.8.2"
},
"dependencies": {
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.16.0",
"next": "^8.0.4",
"openzeppelin-solidity": "2.1.2",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"truffle": "^5.0.5",
"truffle-hdwallet-provider": "^1.0.4",
"web3-utils": "1.0.0-beta.52"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
}
}