This repository has been archived by the owner on Jul 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
122 lines (122 loc) · 3.71 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
{
"name": "kleros-juror-front",
"version": "0.2.0",
"description": "The front end for Kleros jurors.",
"keywords": [
"blockchain",
"ethereum",
"dapp",
"frontend"
],
"repository": "https://github.com/kleros/kleros-juror-front",
"author": "Kleros",
"license": "MIT",
"private": true,
"scripts": {
"prettify": "kathari prettify",
"lint:scss": "kathari lint:scss",
"lint:js": "kathari lint:js --no-root",
"lint": "yarn run lint:scss && yarn run lint:js",
"test": "react-scripts test --env=jsdom --coverage",
"test:coveralls": "coveralls < ./coverage/lcov.info",
"precommit": "kathari precommit",
"commitmsg": "kathari commitmsg",
"cz": "kathari cz",
"start:scss": "yarn run build:scss && yarn run build:scss --watch",
"start:js": "react-scripts start",
"start:storybook": "start-storybook -p 9001 -c .storybook",
"storybook": "run-p start:scss start:storybook",
"build:scss": "node-sass-chokidar ./src -o ./src",
"build:js": "react-scripts --max_old_space_size=4096 build",
"start": "run-p start:scss start:js",
"build": "yarn run build:scss && yarn run build:js",
"build:analyze": "source-map-explorer build/static/js/main.*"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/*.js",
"!src/bootstrap/**/*.js",
"!src/components/identicon/index.js",
"!**/node_modules/**"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@dump247/storybook-state": "^1.2.1",
"@kleros/kathari": "^0.13.2",
"@storybook/addon-actions": "^3.3.10",
"@storybook/addon-storyshots": "^3.3.10",
"@storybook/addons": "^3.3.10",
"@storybook/react": "^3.3.10",
"@storybook/storybook-deployer": "^2.2.0",
"coveralls": "^3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint-plugin-react": "^7.6.1",
"ganache-cli": "^6.1.0",
"husky": "^0.14.3",
"jest-enzyme": "^4.0.2",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.2",
"prop-types": "^15.6.0",
"react-test-renderer": "^16.2.0",
"redux-immutable-state-invariant": "^2.1.0",
"redux-unhandled-action": "^1.3.0",
"shallow-diff": "^0.0.5",
"standard-version": "^4.3.0",
"storybook-host": "^4.1.5",
"timezone-mock": "^1.0.0"
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.5",
"@fortawesome/fontawesome-free-solid": "^5.0.9",
"@fortawesome/react-fontawesome": "^0.0.18",
"@kleros/archon": "^0.5.0",
"@typeform/embed": "^0.5.12",
"bignumber.js": "^8.0.1",
"create-redux-form": "^0.1.2",
"eth-archon": "^0.2.0",
"ethjs": "^0.3.3",
"history": "^4.7.2",
"kleros-api-2": "^0.19.9",
"lessdux": "^0.7.3",
"normalize.css": "^7.0.0",
"react": "^16.2.0",
"react-addons-css-transition-group": "^15.6.2",
"react-blockies": "^1.2.2",
"react-color": "^2.14.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-minimal-pie-chart": "^3.0.1",
"react-redux": "^5.0.6",
"react-redux-toastr": "^7.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "2.1.1",
"react-table": "^6.7.6",
"react-tooltip": "^3.4.0",
"redux": "^3.7.2",
"redux-form": "^7.2.3",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"three": "^0.90.0",
"three-mtl-loader": "^1.0.2",
"three-obj-loader": "^1.1.3",
"zenscroll": "^4.0.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}