-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.21 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
{
"name": "dafidao-beta",
"version": "0.2.15",
"private": true,
"scripts": {
"start": "craco start",
"dev": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"upgrade-sdk": "yarn add yearn/yearn-sdk",
"syncDevLocales": "locize sync --project-id=e4f1bb87-9ed4-4f7c-8adc-d6ca4a329e52 --ver=dev --api-key=xxxx --path=./public/locales --format json --reference-language-only false",
"downloadProdLocales": "locize download --project-id=e4f1bb87-9ed4-4f7c-8adc-d6ca4a329e52 --ver=latest --path=./public/locales --clean true",
"checkDevLocales": "npm run syncLocales --dry true"
},
"dependencies": {
"@ankr.com/ankr.js": "^0.1.9",
"@craco/craco": "^6.1.1",
"@ethersproject/abi": "^5.4.0",
"@ethersproject/address": "^5.4.0",
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/providers": "^5.4.4",
"@gnosis.pm/safe-apps-react-sdk": "^4.6.2",
"@gnosis.pm/safe-apps-web3-react": "^1.5.2",
"@ledgerhq/iframe-provider": "0.4.2",
"@nivo/core": "^0.68.0",
"@nivo/line": "^0.68.0",
"@reduxjs/toolkit": "^1.5.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.168",
"@types/node": "^16.4.0",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/react-transition-group": "4.4.1",
"@types/redux-logger": "^3.0.8",
"@types/styled-components": "^5.1.9",
"@types/styled-system": "^5.1.10",
"@yfi/sdk": "1.2.0",
"awilix": "^4.3.3",
"axios": "^0.21.3",
"bignumber.js": "^9.0.1",
"bnc-notify": "^1.8.0",
"bnc-onboard": "^1.34.2",
"browserslist": "^4.21.3",
"craco-alias": "^2.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"ethers": "^5.4.7",
"husky": "^5.1.3",
"i18next": "^20.1.0",
"i18next-browser-languagedetector": "^6.1.0",
"i18next-http-backend": "^1.3.2",
"lint-staged": "^10.5.4",
"lodash": "^4.17.21",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-countup": "^5.2.0",
"react-dom": "^17.0.1",
"react-i18next": "^11.18.5",
"react-markdown": "^7.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-transition-group": "4.4.2",
"redux-localstorage-simple": "^2.4.0",
"redux-logger": "^3.0.6",
"shell-quote": "1.7.3",
"styled-components": "^5.2.1",
"styled-system": "^5.1.5",
"typescript": "^4.3.5",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"locize-cli": "7.6.17"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
"defaults",
"not IE 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}