-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.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
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
{
"name": "posdao-ui",
"version": "0.1.0",
"pre-commit": [
"lint"
],
"dependencies": {
"@types/jest": "24.0.19",
"@types/node": "12.11.1",
"@types/react": "16.9.9",
"@types/react-dom": "16.9.2",
"bn.js": "^5.2.0",
"bootstrap": "^4.3.1",
"eth-ens-namehash": "^2.0.8",
"ethereumjs-util": "^7.0.7",
"mobx": "^5.14.0",
"mobx-react": "^6.1.4",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-scripts": "3.2.0",
"web3": "^1.5.2",
"web3-eth": "^1.3.5",
"web3-eth-contract": "^1.3.5",
"web3-utils": "^1.3.5"
},
"scripts": {
"postinstall": "npm run typechain",
"start": "react-scripts start",
"build": "npm run typechain && react-scripts build",
"update-contract-abis": "cp ../hbbft-posdao-contracts/build/contracts/*.json ./src/contract-abis",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "node_modules/.bin/eslint './src/!(abis)/**/*.{ts,tsx}'",
"lint-fix": "node_modules/.bin/eslint --fix './src/!(abis)/**/*.{ts,tsx}'",
"typechain": "node_modules/.bin/typechain --target web3-v1 --out-dir src/contracts/ 'src/contract-abis/**/*.json'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typechain/web3-v1": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-airbnb-typescript-prettier": "^4.2.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"typechain": "^5.1.2",
"typescript": "^3.9.9"
}
}