This repository has been archived by the owner on Jan 2, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
68 lines (68 loc) · 1.71 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
{
"name": "opyn-monitor",
"version": "0.1.0",
"private": true,
"dependencies": {
"@0x/order-utils": "^10.4.14",
"@0x/subproviders": "^6.3.2",
"@aragon/ui": "^1.7.0",
"@babel/runtime": "^7.12.5",
"bignumber.js": "^9.0.1",
"bluebird": "^3.7.2",
"bnc-notify": "^1.5.1",
"bnc-onboard": "^1.18.0",
"bootstrap": "^4.6.0",
"ethereum-ens": "^0.8.0",
"greeks": "^1.0.0",
"implied-volatility": "^1.0.0",
"moment": "^2.29.1",
"react": "^16.14.0",
"react-bootstrap": "^1.4.3",
"react-dom": "^16.14.0",
"react-ga": "^2.7.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.0",
"styled-components": "^5.2.1",
"typescript": "^3.9.7",
"web3": "^1.3.3"
},
"scripts": {
"sync-assets": "copy-aragon-ui-assets ./public",
"start": "npm run sync-assets && react-scripts --max_old_space_size=4096 start",
"build": "npm run sync-assets && react-scripts --max_old_space_size=4096 build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**.{js, jsx, ts, tsx}": [
"eslint --fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^3.1.0",
"lint-staged": "^10.5.3"
}
}