forked from rarity-adventure/rarity-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·120 lines (120 loc) · 4.15 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
{
"name": "@rarity/frontend",
"version": "1.0.0",
"private": true,
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{md,css}": "prettier --write"
},
"dependencies": {
"@apollo/client": "^3.4.10",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@craco/craco": "6.2.0",
"@fontsource/dm-sans": "4.3.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@fullhuman/postcss-purgecss": "4.0.3",
"@headlessui/react": "1.2.0",
"@reach/dialog": "0.15.0",
"@reduxjs/toolkit": "1.5.1",
"@tailwindcss/aspect-ratio": "0.2.1",
"@tailwindcss/forms": "0.3.2",
"@tailwindcss/line-clamp": "0.2.1",
"@tailwindcss/postcss7-compat": "2.1.2",
"@types/node": "15.6.1",
"@types/react": "17.0.8",
"@types/react-dom": "17.0.5",
"@types/react-helmet": "6.1.1",
"@types/react-redux": "7.1.16",
"@types/react-router-dom": "5.1.7",
"@types/react-syntax-highlighter": "13.5.0",
"@types/react-tabs": "2.3.2",
"@types/react-transition-group": "4.4.1",
"@types/react-virtualized-auto-sizer": "1.0.0",
"@types/react-window": "1.8.3",
"@types/rebass": "4.0.8",
"@types/styled-components": "5.1.9",
"@types/wcag-contrast": "3.0.0",
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"@web3-react/core": "6.1.9",
"@web3-react/injected-connector": "6.0.7",
"@web3-react/lattice-connector": "6.1.9",
"@web3-react/portis-connector": "6.1.9",
"@web3-react/torus-connector": "6.1.9",
"@web3-react/walletconnect-connector": "6.2.0",
"@web3-react/walletlink-connector": "6.2.0",
"autoprefixer": "9.8.6",
"classnames": "2.3.1",
"clsx": "1.1.1",
"copy-to-clipboard": "3.3.1",
"dotenv": "^10.0.0",
"eslint": "7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-import": "2.23.3",
"eslint-plugin-flowtype": "5.9.2",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"ethers": "5.2.0",
"fuse.js": "6.4.6",
"graphql": "^15.5.3",
"husky": "6.0.0",
"jazzicon": "1.5.0",
"lint-staged": "11.0.0",
"polished": "4.1.2",
"postcss": "7.0.35",
"postcss-preset-env": "6.7.0",
"prettier": "2.3.0",
"react": "17.0.2",
"react-app-rewire-hot-loader": "2.0.1",
"react-app-rewire-postcss": "3.0.2",
"react-app-rewired": "2.1.8",
"react-device-detect": "1.17.0",
"react-dom": "17.0.2",
"react-feather": "2.0.9",
"react-helmet": "6.1.0",
"react-hot-loader": "4.13.0",
"react-markdown": "6.0.2",
"react-popper": "2.2.5",
"react-redux": "7.2.4",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"react-spring": "8.0.27",
"react-tabs": "3.2.2",
"react-use-gesture": "9.1.3",
"rebass": "4.0.7",
"redux-localstorage-simple": "2.4.0",
"source-map-explorer": "2.5.2",
"styled-components": "5.3.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"tailwindcss-border-gradient-radius": "2.0.0",
"typescript": "4.2.4"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"prepare": "husky install",
"format": "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"
]
},
"license": "GPL-3.0-or-later"
}