forked from greenlucid/yubiai-evidence-display
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.57 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
{
"name": "gtcr-injected-uis",
"version": "1.2.0",
"description": "Generalized TCR evidence display and various other components.",
"main": "index.js",
"repository": "[email protected]:kleros/gtcr-injected-uis.git",
"author": "kleros",
"license": "MIT",
"homepage": "./",
"scripts": {
"start": "react-scripts --openssl-legacy-provider start",
"build": "react-scripts --openssl-legacy-provider build",
"release": "standard-version",
"lint:eslint:fix": "eslint './src/**/*.js' --fix",
"lint:prettier:fix": "prettier --write ''./src/**/*.js''",
"format": "yarn run lint:eslint:fix && yarn run lint:prettier:fix"
},
"dependencies": {
"@loadable/component": "^5.10.1",
"antd": "^5.4.0",
"ethers": "^5.4.7",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"styled-components": "^4.3.2",
"use-debounce": "^3.1.0"
},
"devDependencies": {
"@babel/helper-builder-react-jsx": "^7.19.0",
"@babel/helper-builder-react-jsx-experimental": "^7.12.11",
"@babel/helper-define-map": "^7.18.6",
"@babel/helper-regex": "^7.10.5",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"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": {
"parser": "babel-eslint",
"ignore": [
"/node_modules/**",
"/build/**",
"/public/**",
"/src/bootstrap/service-worker.js"
],
"globals": [
"fetch"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"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"
]
},
"babelMacros": {
"styledComponents": {
"pure": true
}
},
"volta": {
"node": "12.22.12",
"yarn": "1.22.11"
}
}