forked from kendricktan/heiswap-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.8 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
{
"name": "heiswap",
"version": "0.1.0",
"private": true,
"dependencies": {
"@drizzle-utils/core": "^0.3.1-alpha.0",
"@drizzle-utils/get-web3": "^0.2.2-alpha.0",
"axios": "^0.19.0",
"bn.js": "^4.11.8",
"crypto": "^1.0.1",
"elliptic": "^6.5.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"rimble-ui": "^0.9.4",
"styled-components": "^4.3.2",
"web3": "1.0.0-beta.37",
"web3-utils": "1.0.0-beta.37"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "(ganache-cli -k=petersburg --quiet &) && truffle test && react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"standard",
"standard-react",
"plugin:flowtype/recommended"
],
"parser": "babel-eslint",
"plugins": [
"flowtype"
],
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": false
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-flow": "^6.23.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-flowtype": "^3.11.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.102.0",
"flow-remove-types": "^2.103.0",
"ganache-cli": "^6.4.4",
"truffle": "^5.0.26",
"truffle-hdwallet-provider": "^1.0.12"
}
}