-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 1.88 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
{
"name": "okcoin",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/preset-react": "^7.12.7",
"@chakra-ui/icons": "^1.0.9",
"@chakra-ui/react": "^1.3.3",
"@chakra-ui/theme-tools": "^1.1.7",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@fontsource/poppins": "^4.3.0",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"bnc-onboard": "^1.20.0",
"debounce": "^1.2.1",
"framer-motion": "^3.6.2",
"jotai": "^0.12.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-error-boundary": "^3.1.0",
"react-hook-form": "^6.11.3",
"react-icons": "^4.1.0",
"react-query": "^3.12.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-select": "^4.3.0",
"web3-eth": "^1.3.6",
"web3-utils": "^1.3.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint": "^7.14.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix"
],
"*.+(json|css|md)": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}