-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "@kleros/erc-792",
"version": "8.0.0",
"description": "ERC-792: Arbitration Standard",
"main": "index.js",
"repository": "https://github.com/kleros/erc-792",
"author": "Kleros",
"license": "MIT",
"private": false,
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.6.5",
"husky": "^6.0.0",
"ipfs-http-client": "32.0.1",
"lint-staged": "^11.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"react": "16.8.6",
"react-bootstrap": "1.0.0-beta.8",
"react-dom": "16.8.6",
"react-scripts": "3.0.1",
"web3": "^1.6.0"
},
"scripts": {
"sol:build": "hardhat compile",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"files": [
"contracts"
],
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}