-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
96 lines (96 loc) · 2.56 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "adex-staking-ui",
"version": "0.11.16",
"private": true,
"engines": {
"npm": "use-yarn",
"node": ">=18.20.1 <19",
"yarn": ">=1.22"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@metamask/detect-provider": "^1.1.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.1.2",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@walletconnect/ethereum-provider": "^2.9.0",
"@walletconnect/modal": "^2.6.0",
"@web3-react/abstract-connector": "^6.0.7",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/ledger-connector": "^6.1.1",
"@web3-react/trezor-connector": "^6.1.9",
"@web3-react/walletconnect-connector": "6.2.13",
"adex-brand": "^1.0.0",
"adex-protocol-eth": "4.2.4",
"assert": "^2.0.0",
"blockies-ts": "^1.0.0",
"buffer": "^6.0.3",
"chart.js": "^2.9.4",
"clsx": "^1.1.1",
"copy-to-clipboard": "^3.3.1",
"crypto-browserify": "^3.12.0",
"ethereumjs-util": "^6.1.0",
"ethers": "5.6.9",
"husky": "^3.1.0",
"i18next": "^21.6.12",
"i18next-browser-languagedetector": "^6.1.3",
"i18next-http-backend": "^1.3.2",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"process": "^0.11.10",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-chartjs-2": "^2.10.0",
"react-dom": "^18.2.0",
"react-i18next": "11.15.5",
"react-idle-timer": "^4.6.4",
"react-jazzicon": "^1.0.3",
"react-router-dom": "5.3.0",
"react-scripts": "5.0.1",
"stream-browserify": "^3.0.0",
"url": "^0.11.0",
"web3": "^1.3.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"deploy": "react-app-rewired build && echo staking.adex.network > build/CNAME && gh-pages -d build",
"staging-deploy": "react-app-rewired build && echo staging-staking.adex.network > build/CNAME && gh-pages -d build -r git@github.com:AmbireTech/staking-staging-deploy.git",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject"
},
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"npx prettier --write",
"git add"
]
},
"devDependencies": {
"gh-pages": "^2.2.0"
}
}