-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.52 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
{
"name": "@kleros/linguo-evidence-display",
"version": "1.0.0",
"private": false,
"description": "The Linguo evidence display interface.",
"keywords": [
"blockchain",
"ethereum",
"dapp",
"linguo",
"translation"
],
"repository": "https://github.com/kleros/linguo-evidence-display",
"license": "MIT",
"author": "Kleros",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "parcel build src/index.html --no-source-maps --public-url .",
"postbuild": "shx test -f ./linguo-evidence-display.zip && rm -rf ./linguo-evidence-display.zip; zip -jr ./linguo-evidence-display.zip dist/*",
"clean": "rm -rf .cache dist",
"lint:css": "stylelint 'src/**/*.js{,x}'",
"lint:js": "eslint --ext .js,.jsx src/",
"start": "parcel src/index.html"
},
"dependencies": {
"@ant-design/icons": "^4.6.4",
"@hot-loader/react-dom": "^16.13.0",
"@kleros/archon": "^2.0.1",
"@kleros/linguo-contracts": "~0.1.1",
"@loadable/component": "^5.12.0",
"@web3-react/core": "^6.1.9",
"@web3-react/network-connector": "^6.1.9",
"antd": "^4.3.0",
"clsx": "^1.1.0",
"core-js": "^3.0.0",
"dayjs": "^1.8.22",
"deepmerge": "^4.2.2",
"hoist-non-react-statics": "^3.3.2",
"normalize.css": "^8.0.1",
"path-to-regexp": "^6.1.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-blockies": "^1.4.1",
"react-dom": "npm:@hot-loader/react-dom",
"react-error-boundary": "^2.3.0",
"react-hot-loader": "^4.12.19",
"react-is": "^16.13.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"scroll-into-view-if-needed": "^2.2.25",
"styled-components": "^5.1.0",
"web3": "^1.5.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@prettier/plugin-xml": "^0.7.2",
"@svgr/parcel-plugin-svgr": "^5.2.0",
"@types/react": "^16.9.23",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-styled-components": "^1.10.7",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-parcel": "^1.10.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.7",
"parcel": "^1.12.4",
"parcel-plugin-clean-dist": "^0.0.6",
"postcss": "^7.0.27",
"postcss-custom-media": "^7.0.8",
"postcss-modules": "^1.5.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.2",
"prettier-config-standard": "^1.0.1",
"prettier-plugin-packagejson": "^2.1.2",
"shx": "^0.3.3",
"stylelint": "^13.2.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
},
"volta": {
"node": "10.24.1"
}
}