This repository has been archived by the owner on Jul 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 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
68
69
70
71
72
73
74
75
76
77
{
"name": "klaytn-online-toolkit",
"version": "0.1.0",
"private": true,
"dependencies": {
"@klaytn/kaikas-web3-provider": "^1.0.3",
"@klaytn/klip-web3-provider": "^1.0.2",
"@klaytn/web3modal": "^1.1.0",
"@tabler/icons": "^1.107.0",
"@walletconnect/utils": "^1.8.0",
"axios": "^0.27.2",
"bignumber.js": "^9.1.0",
"caver-js": "^1.6.8",
"ethereumjs-util": "^7.1.5",
"lodash": "^4.17.21",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.1.0",
"react-device-detect": "^2.2.2",
"react-dom": "^17.0.2",
"react-query": "^3.39.2",
"react-router-dom": "^6.4.2",
"react-scripts": "^4.0.3",
"react-toastify": "^8.2.0",
"reactstrap": "^9.1.4",
"styled-components": "^5.3.5",
"typescript": "^4.8.3",
"web-vitals": "^2.1.4",
"web3": "^1.8.0"
},
"devDependencies": {
"@types/ethereumjs-util": "^6.1.0",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.185",
"@types/node": "^16.11.59",
"@types/react": "^18.0.20",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"gh-pages": "^4.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint": "eslint --fix src/**/*.{jsx,ts,tsx}",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "error",
"@typescript-eslint/no-unused-vars": "error",
"import/no-anonymous-default-export": "off",
"react-hooks/exhaustive-deps": "off"
}
},
"prettier": {
"singleQuote": true,
"semi": false
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}