-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
91 lines (91 loc) · 2.78 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
{
"name": "@kleros/escrow",
"version": "0.0.1",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.8",
"@fortawesome/free-solid-svg-icons": "^5.5.0",
"@fortawesome/react-fontawesome": "^0.1.3",
"@kleros/archon": "^0.6.0",
"@kleros/kathari": "^0.14.0",
"@kleros/kleros-interaction": "^0.9.1",
"@reach/router": "^1.2.1",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.0",
"clsx": "^1.1.1",
"enzyme": "^3.7.0",
"formik": "^1.3.2",
"is-image": "^2.0.0",
"is-text-path": "^1.0.1",
"is-video": "^1.0.1",
"lessdux": "^0.8.3",
"linkifyjs": "^2.1.7",
"lodash": "^4.17.11",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.3",
"path": "^0.12.7",
"prop-types": "^15.6.2",
"react": "16.7.0-alpha.2",
"react-blockies": "^1.4.0",
"react-countdown-now": "^2.1.0",
"react-datepicker": "^2.7.0",
"react-dom": "16.7.0-alpha.2",
"react-formik-ui": "^2.3.16",
"react-helmet": "^5.2.0",
"react-rangeslider": "^2.2.0",
"react-redux": "^5.1.1",
"react-responsive-modal": "^3.5.1",
"react-scripts": "^2.1.1",
"react-search-input": "^0.11.3",
"react-select": "^2.3.0",
"react-spinners": "^0.4.7",
"react-tabs": "^3.0.0",
"react-textarea-autosize": "^7.1.0",
"react-tooltip": "^3.9.2",
"redux": "^4.0.1",
"redux-saga": "^0.16.2",
"redux-unhandled-action": "^1.3.0",
"sass-loader": "^7.1.0",
"use-persisted-state": "^0.3.3",
"web3": "1.0.0-beta.33",
"yup": "^0.26.6"
},
"scripts": {
"prettify": "kathari prettify",
"lint:scss": "kathari lint:scss",
"lint:js": "kathari lint:js",
"lint": "yarn run lint:scss && yarn run lint:js",
"test": "echo 0",
"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 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.*"
},
"resolutions": {
"websocket": "https://github.com/frozeman/WebSocket-Node.git#browserifyCompatible",
"stylelint": "^9.0.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"volta": {
"node": "10.24.1",
"yarn": "1.22.22"
}
}