-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
92 lines (92 loc) · 2.66 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
{
"name": "tcr-ui",
"author": "kangarang",
"version": "0.0.1",
"description": "Client-side shell to interact with token-curated registries",
"repository": "https://github.com/kangarang/tcr-ui",
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"private": true,
"scripts": {
"build": "react-scripts build",
"dev": "react-scripts start",
"precommit": "lint-staged",
"start": "yarn run dev",
"test": "CI=true react-scripts test --env=jsdom",
"rpc": "ganache-cli --port 8545 -i 420 --mnemonic 'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat'",
"build:storybook": "build-storybook -s public",
"storybook": "start-storybook -p 9009 -s public",
"eth-events": "babel-node scripts/eth-events",
"update:abis": "babel-node scripts/update-abis",
"update:tokens": "babel-node scripts/update-tokens"
},
"dependencies": {
"@material-ui/core": "1.4.3",
"@material-ui/icons": "2.0.1",
"babel-polyfill": "6.26.0",
"bn.js": "4.11.8",
"date-fns": "1.29.0",
"eth-events": "0.1.1",
"ethereumjs-util": "5.2.0",
"ethers": "3.0.26",
"ethjs": "0.4.0",
"ethjs-abi": "0.2.1",
"ethjs-contract": "0.2.3",
"immutable": "4.0.0-rc.9",
"ipfs-mini": "1.1.2",
"jazzicon": "1.5.0",
"localforage": "1.7.2",
"lodash": "4.17.10",
"node-uuid": "1.4.8",
"path": "0.12.7",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-loadable": "5.4.0",
"react-motion": "0.5.2",
"react-notification-system": "0.2.17",
"react-notification-system-redux": "1.2.0",
"react-redux": "5.0.7",
"react-router-dom": "4.3.1",
"react-router-redux": "4.0.8",
"react-scripts": "2.0.1",
"redux": "4.0.0",
"redux-immutable": "4.0.0",
"redux-saga": "0.16.0",
"reselect": "3.0.1",
"styled-components": "3.4.1",
"yarn": "^1.9.4"
},
"devDependencies": {
"@storybook/addon-actions": "3.4.8",
"@storybook/addon-links": "3.4.8",
"@storybook/addons": "3.4.8",
"@storybook/react": "3.4.8",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"babel-runtime": "6.26.0",
"ganache-cli": "6.1.0",
"husky": "0.14.3",
"lint-staged": "7.0.0",
"prettier": "1.14.0",
"react-test-renderer": "16.3.1",
"redux-logger": "3.0.6"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}