This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
83 lines (83 loc) · 2.23 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
83
{
"name": "gamma-portal",
"version": "1.0.0",
"private": true,
"dependencies": {
"@0x/protocol-utils": "^1.3.0",
"@aragon/ui": "^1.7.0",
"@babel/runtime": "^7.12.0",
"@types/jest": "^24.0.0",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.0",
"bignumber.js": "^9.0.1",
"bnc-notify": "^1.4.0",
"bnc-onboard": "^1.37.1",
"chart.js": "^2.9.4",
"ethereum-ens": "^0.8.0",
"ethers": "5.0.32",
"greeks": "^1.0.0",
"implied-volatility": "^1.0.0",
"kaktana-react-lightweight-charts": "^1.1.5",
"lightweight-charts": "^3.2.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31",
"react": "^16.13.1",
"react-chartjs-2": "^2.11.1",
"react-dom": "^16.13.1",
"react-ga": "^3.3.0",
"react-grid-system": "^7.1.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-use-websocket": "^2.2.0",
"styled-components": "^5.2.1",
"typescript": "~3.7.2",
"web3": "^1.3.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^8.0.1",
"lint-staged": "^10.0.10",
"prettier": "^2.2.1"
},
"scripts": {
"sync-assets": "copy-aragon-ui-assets ./public",
"start": "export REACT_APP_VERSION=$(git rev-parse --short HEAD) && npm run sync-assets && react-scripts --max_old_space_size=4096 start",
"build": "export REACT_APP_VERSION=$(git rev-parse --short HEAD) && npm run sync-assets && react-scripts --max_old_space_size=4096 build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/***.{tsx,ts}": [
"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"
]
},
"resolutions": {
"**/pretty-format": "25.1.0"
}
}