-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
101 lines (101 loc) · 2.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
{
"name": "@xyo-network/tool-dapper-react",
"version": "0.3.8",
"description": "An automated smart contract web viewer. Run on any ABI folder",
"repository": {
"type": "git",
"url": "git+https://github.com/XYOracleNetwork/tool-dapper-react.git"
},
"homepage": "https://dapper.layerone.co/",
"keywords": [
"xyo",
"dapploy",
"xyo-nodejs"
],
"author": "Kevin Weiler",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/XYOracleNetwork/tool-dapper-react/issues"
},
"dependencies": {
"bignumber.js": "^8.0.2",
"bs58": "^4.0.1",
"concurrently": "^4.0.1",
"configparser": "^0.3.6",
"cors": "^2.8.5",
"eslint-config-standard-react": "^7.0.2",
"ethereumjs-abi": "^0.6.6",
"file-selector": "^0.1.6",
"glamor": "^2.20.40",
"glamorous": "^5.0.0",
"history": "^4.7.2",
"ipfs-http-client": "^30.1.3",
"js-cookie": "^2.2.0",
"json-loader": "^0.5.7",
"perfect-scrollbar": "^1.4.0",
"portis": "^1.3.4",
"react": "^16.8.1",
"react-cookie": "^3.0.8",
"react-dom": "^16.8.1",
"react-dropdown": "^1.6.4",
"react-dropzone": "^10.1.4",
"react-hanger": "1.1.2",
"react-perf-devtool": "^3.1.8",
"react-progress-button": "^5.1.0",
"react-router-dom": "^5.0.0",
"react-scripts": "3.3.0",
"s3": "^4.4.0",
"typeface-pt-sans": "^0.0.72",
"untildify": "^4.0.0",
"web3": "^1.0.0-beta.46"
},
"devDependencies": {
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.1.0",
"lint-staged": "^8.1.3",
"prettier": "^1.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"scripts": {
"start": "yarn dev",
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom a",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}