-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.41 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
{
"name": "seker-factory",
"version": "0.1.0",
"private": true,
"dependencies": {
"@burner-wallet/burner-connect-provider": "^0.1.1",
"@coinbase/wallet-sdk": "^3.5.3",
"@ethersproject/providers": "^5.6.4",
"@ethersproject/units": "^5.6.0",
"@myetherwallet/mewconnect-web-client": "^2.2.0-beta.16",
"@netlify/functions": "^0.11.0",
"@toruslabs/torus-embed": "^1.20.4",
"@walletconnect/web3-provider": "^1.7.1",
"assert": "^2.0.0",
"authereum": "^0.1.14",
"axios": "^0.26.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eth-provider": "^0.10.0",
"ethers": "^5.5.4",
"fetch-jsonp": "^1.2.1",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"query-string": "^7.1.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.2.1",
"react-scripts": "^5.0.1",
"react-toastify": "^9.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0",
"web3modal": "^1.9.7"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"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"
]
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.scss": "stylelint --fix"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/node": "^14.18.9",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"node-sass": "6.0.0",
"prettier": "^2.5.1",
"react-app-rewired": "^2.2.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"typescript": "^4.5.5"
}
}