-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.bak.json
99 lines (99 loc) · 3.37 KB
/
package.bak.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
{
"name": "badger-v2",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16.13.1"
},
"dependencies": {
"@badger-dao/sdk": "^1.15.1",
"@coinbase/wallet-sdk": "^3.2.0",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@portis/web3": "^4.0.7",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/node-logger": "^6.4.19",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.4.19",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.1.10",
"@typechain/ethers-v5": "^10.0.0",
"@types/css-mediaquery": "^0.1.1",
"@types/jest": "^28.1.3",
"@types/material-ui": "^0.21.8",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-test-renderer": "^18.0.0",
"@types/recharts": "^2.0.0",
"@typescript-eslint/parser": "^5.29.0",
"@typescript-eslint/typescript-estree": "5.29.0",
"@walletconnect/web3-provider": "^1.7.8",
"assert": "^2.0.0",
"clsx": "^1.1.1",
"copy-to-clipboard": "^3.3.1",
"css-mediaquery": "^0.1.2",
"d3-scale": "^3.2.3",
"d3-shape": "^2.0.0",
"d3-time-format": "^3.0.0",
"dayjs": "^1.10.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ethers": "^5.5.3",
"husky": "^5.1.3",
"jest": "26.6.0",
"mobx": "^6.6.0",
"mobx-react-lite": "^3.4.0",
"mobx-router": "^1.0.0",
"mockdate": "^3.0.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-number-format": "^4.9.3",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0",
"react-toastify": "9.0.3",
"recharts": "^2.1.2",
"slugify": "^1.6.0",
"typechain": "^8.0.0",
"typescript": "^4.5.4",
"web3modal": "^1.9.7"
},
"scripts": {
"prepare": "husky install",
"start": "react-scripts start",
"build": "react-scripts --max_old_space_size=4096 build",
"test": "react-scripts test --watchAll=false --detectOpenHandles",
"test:coverage": "react-scripts test --silent --ci --coverage --watchAll=false --coverageReporters=\"text\" --coverageReporters=\"text-summary\" --json --outputFile=report.json",
"eject": "react-scripts eject",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\" --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
"codegen:contracts": "typechain --target ethers-v5 --out-dir src/contracts src/abi/*.abi",
"requirements-check": "node check-version.js",
"postinstall": "yarn requirements-check",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"]
},
"eslintConfig": {
"overrides": [
{
"files": ["**/*.stories.*"],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}