This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.96 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
{
"name": "governor",
"version": "0.0.1",
"description": "The Kleros governor interface.",
"keywords": [
"blockchain",
"ethereum",
"dapp",
"kleros",
"court"
],
"repository": "https://github.com/kleros/governor",
"author": "Kleros",
"license": "MIT",
"private": true,
"scripts": {
"prettify": "kathari prettify",
"lint:styled": "kathari lint:styled",
"lint:js": "kathari lint:js --no-root",
"lint": "yarn run lint:styled && yarn run lint:js",
"test": "echo \"\"",
"cz": "kathari cz",
"start": "react-scripts start",
"build": "CI= react-scripts build",
"build:analyze": "source-map-explorer build/static/js/main.*",
"build:theme": "lessc --js ./src/components/theme.less ./src/components/theme.css"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "kathari precommit",
"commit-msg": "kathari commitmsg"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@kleros/kathari": "^0.22.0",
"husky": "^1.1.4",
"less": "^3.8.1",
"source-map-explorer": "^1.6.0",
"standard-version": "^4.4.0"
},
"dependencies": {
"@loadable/component": "^5.5.0",
"@sentry/browser": "^4.6.4",
"antd": "^3.10.8",
"dataloader": "^1.4.0",
"debounce": "^1.2.0",
"drizzle": "^1.4.0",
"drizzle-react": "^1.3.0",
"polished": "^2.3.0",
"prop-types": "^15.6.2",
"react": "16.7.0-alpha.2",
"react-blockies": "^1.4.1",
"react-circular-progressbar": "^2.0.1",
"react-dom": "16.7.0-alpha.2",
"react-helmet": "^5.2.0",
"react-markdown": "^4.0.4",
"react-minimal-pie-chart": "^3.3.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.1",
"react-time-ago": "^3.0.3",
"shallowequal": "^1.1.0",
"styled-components": "^4.1.1",
"web3": "^1.2.9",
"web3-utils": "^1.2.5-rc.0"
}
}