-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.27 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
{
"name": "build-back-better-frontend",
"version": "0.1.0",
"private": true,
"author": "Theo Ilie and Ryan Lavin",
"license": "MIT",
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.4",
"@chakra-ui/theme": "^1.12.3",
"@chakra-ui/theme-tools": "^1.3.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@ethersproject/providers": "^5.5.2",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/react-select": "^5.0.1",
"@types/ua-parser-js": "^0.7.36",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"dotenv": "^14.3.2",
"ethers": "^5.5.3",
"framer-motion": "^5.5.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-query": "^3.34.7",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"react-select": "^5.2.2",
"ua-parser-js": "^1.0.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"contracts:compile": "typechain --target ethers-v5 --out-dir src/abis/types \"./src/abis/**/*.json\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint --fix"
},
"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"
]
},
"devDependencies": {
"@typechain/ethers-v5": "^9.0.0",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typechain": "^7.0.0",
"typescript": "^4.5.5"
}
}