-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.63 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
{
"name": "hyphal",
"version": "0.1.0",
"private": true,
"dependencies": {
"@burner-wallet/burner-connect-provider": "^0.1.1",
"@ethersproject/abi": "^5.5.0",
"@ethersproject/address": "^5.4.0",
"@ethersproject/bignumber": "^5.4.2",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/constants": "^5.4.0",
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/hash": "^5.4.0",
"@ethersproject/providers": "^5.4.5",
"@ethersproject/solidity": "^5.4.0",
"@ethersproject/units": "^5.4.0",
"@myetherwallet/mewconnect-web-client": "^2.2.0-beta.14",
"@toruslabs/torus-embed": "^1.18.6",
"@walletconnect/web3-provider": "^1.7.0",
"authereum": "^0.1.14",
"axios": "^0.24.0",
"eth-provider": "^0.9.8",
"firebase": "^8.4.2",
"ipfs-http-client": "^50.0.0",
"jwt-decode": "^3.1.2",
"node-sass": "^5.0.0",
"query-string": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-toastify": "^7.0.4",
"web-vitals": "^1.0.1",
"web3modal": "^1.9.4"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "DISABLE_ESLINT_PLUGIN=true react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint --ext .ts --ext .tsx --fix src/ ; stylelint src/**/*.scss --fix",
"lint-hooks": "eslint -c .eslintrc.hooks.json --ext .ts --ext .tsx src/",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/node": "^15.0.2",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.2.1",
"source-map-explorer": "^2.5.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.scss": "stylelint --fix"
}
}