-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 1.86 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
{
"name": "@project/react-app",
"version": "1.0.0",
"license": "UNLICENSED",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@0x/protocol-utils": "^1.3.0",
"@apollo/client": "^3.2.7",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.56",
"@sentry/react": "^5.29.2",
"@sentry/tracing": "^5.29.2",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.9",
"@types/react-router-dom": "^5.1.5",
"@types/web3": "^1.2.2",
"bnc-notify": "^1.5.0",
"bnc-onboard": "git+https://github.com/KMKoushik/onboard.git#1.23.1",
"chart.js": "^2.9.4",
"clsx": "^1.1.1",
"dayjs": "^1.10.4",
"eslint": "^6.8.0",
"eslint-plugin-flowtype": "^4.6.0",
"eth-permit": "^0.1.9",
"ethers": "^5.0.18",
"firebase": "^8.7.0",
"graphql": "^14.6.0",
"graphql.macro": "^1.4.2",
"greeks": "^1.0.0",
"husky": "^4.2.5",
"implied-volatility": "^1.0.0",
"lint-staged": "10.2.11",
"lodash": "^4.17.20",
"prettier": "^2.2.1",
"react": "16.12.0",
"react-chartjs-2": "^2.11.1",
"react-dom": "16.12.0",
"react-ga": "^3.3.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-share": "^4.3.1",
"react-use-websocket": "^2.2.0",
"typescript": "^3.9.7"
},
"eslintConfig": {
"extends": "react-app"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test": "react-scripts test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{tsx,tx}": [
"prettier --write"
]
}
}