-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
130 lines (130 loc) · 3.86 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
128
129
130
{
"name": "gtcr",
"description": "A UI for the Kleros powered Generalized Token Curated List",
"version": "3.0.0",
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"build": "yarn build:theme && react-scripts --max_old_space_size=4096 build",
"build:theme": "lessc --js ./src/bootstrap/theme.less ./src/bootstrap/theme.css",
"release": "standard-version",
"lint": "eslint \"./src/**/*.js\" \"./src/**/*.ts\" \"./src/**/*.tsx\"",
"lint:eslint:fix": "eslint \"./src/**/*.js\" \"./src/**/*.ts\" \"./src/**/*.tsx\" --fix",
"lint:prettier:fix": "prettier --write \"./src/**/*.js\" \"./src/**/*.ts\" \"./src/**/*.tsx\"",
"format": "yarn run lint:eslint:fix && yarn run lint:prettier:fix"
},
"dependencies": {
"@apollo/client": "^3.4.8",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"@kleros/archon": "^0.10.1",
"@kleros/erc-792": "^4.0.1",
"@kleros/gtcr-encoder": "^1.6.1",
"@kleros/kleros": "^0.1.5",
"@kleros/tcr": "^2.0.0",
"@loadable/component": "^5.10.1",
"@walletconnect/qrcode-modal": "^1.0.0-beta.35",
"@walletconnect/web3-subprovider": "^1.0.0-beta.35",
"antd": "^3.20.1",
"bn.js": "^5.0.0",
"body-scroll-lock": "^3.0.2",
"cross-fetch": "^4.0.0",
"ethers": "^4.0.33",
"fast-deep-equal": "^3.1.3",
"formik": "^1.5.7",
"fortmatic": "^0.8.2",
"graphql": "^15.5.1",
"humanize-duration": "^3.20.1",
"js-ordinal": "^1.0.1",
"localforage": "^1.7.3",
"match-sorter": "^4.0.2",
"mime": "^3.0.0",
"prop-types": "^15.7.2",
"qs": "^6.8.0",
"react": "^16.8.6",
"react-blockies": "^1.4.1",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-rewards": "^1.1.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"react-text-loop": "^2.3.0",
"reactour": "^1.18.6",
"rlp": "^2.2.3",
"styled-components": "^4.3.2",
"use-debounce": "^2.2.0",
"uuid": "^3.3.2",
"web3-react": "^5.0.4",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/helper-define-map": "^7.15.4",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@types/humanize-duration": "^3.27.1",
"@types/loadable__component": "^5.13.4",
"@types/mime": "^3.0.0",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.25",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react-app": "^4.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-config-standard-jsx": "^7.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-unicorn": "^9.1.1",
"husky": "^3.0.0",
"less": "^3.9.0",
"prettier": "^1.18.2",
"standard-version": "^8.0.1"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/node_modules/**",
"/build/**",
"/public/**",
"/src/bootstrap/service-worker.js"
],
"globals": [
"fetch"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"volta": {
"node": "12.22.12",
"yarn": "1.22.19"
}
}