-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
127 lines (127 loc) · 3.75 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "callisto-interface",
"description": "Callisto Interface",
"homepage": ".",
"private": true,
"dependencies": {
"@binance-chain/bsc-connector": "^1.0.0",
"@ethersproject/experimental": "^5.1.0",
"@popperjs/core": "^2.9.2",
"@reach/dialog": "^0.15.0",
"@reach/portal": "^0.15.0",
"@reduxjs/toolkit": "^1.5.1",
"@soy-libs/sdk": "^0.0.6",
"@soy-libs/uikit": "^0.1.5",
"@types/jest": "^27.0.0",
"@types/lodash.flatmap": "^4.5.6",
"@types/multicodec": "^2.1.0",
"@types/node": "^12.0.0",
"@types/qs": "^6.9.6",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/react-slick": "^0.23.4",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/react-window": "^1.8.2",
"@types/rebass": "^4.0.8",
"@types/styled-components": "^5.1.9",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.4",
"@web3-react/walletlink-connector": "^6.2.3",
"ajv": "^8.1.0",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"bootstrap": "^4.6.0",
"cids": "^1.1.6",
"copy-to-clipboard": "^3.3.1",
"ethers": "^5.1.0",
"i18next": "^20.2.1",
"i18next-browser-languagedetector": "^6.1.0",
"i18next-xhr-backend": "^3.2.2",
"inter-ui": "^3.18.0",
"jazzicon": "^1.5.0",
"js-cookie": "^2.2.1",
"lodash.flatmap": "^4.5.0",
"multicodec": "^3.0.1",
"multihashes": "^4.0.2",
"node-sass": "^5.0.0",
"polished": "^4.1.1",
"react": "^17.0.2",
"react-bootstrap": "^1.5.2",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-i18next": "^11.8.13",
"react-icons": "^4.2.0",
"react-popper": "^2.2.5",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-slick": "^0.28.1",
"react-spring": "^9.2.3",
"react-sticky": "^6.0.3",
"react-virtualized-auto-sizer": "^1.0.5",
"react-window": "^1.8.6",
"rebass": "^4.0.7",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-localstorage-simple": "^2.4.0",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"styled-components": "^5.2.3",
"styled-react-modal": "^2.1.0",
"typescript": "^4.1.2",
"wcag-contrast": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@pancakeswap/eslint-config-pancake": "^1.2.0",
"@types/testing-library__cypress": "^5.0.8",
"cypress": "^7.0.1",
"eslint": "^7.24.0",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"qs": "^6.10.1",
"serve": "^11.3.2",
"start-server-and-test": "^1.12.1",
"ts-node": "^10.2.0"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "CI=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{js,jsx,ts,tsx}'",
"format:write": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"updateLPsAPR": "ts-node --compiler-options '{\"module\":\"commonjs\"}' scripts/updateLPsAPR.ts"
},
"husky": {
"hooks": {
"pre-commit": "yarn format",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}