-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.16 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
{
"name": "@saturnnetwork/erc20wrapper",
"version": "1.0.0",
"description": "ERC20 wrapper for ERC223 tokens",
"homepage": "https://erc20.saturn.network/",
"keywords": [
"blockchain",
"eth",
"etc",
"evm",
"ethereum",
"ethereum-classic",
"token",
"erc20",
"erc223",
"saturn",
"dex",
"dapp",
"react",
"decentralized"
],
"author": "Saturn Network",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"clean": "shx rm -rf coverage && shx rm -rf .0x-artifacts/* && shx rm -rf build/* && shx rm -rf artifacts/*",
"test": "truffle test",
"compile": "truffle compile",
"migrate": "truffle migrate",
"sol-compiler": "sol-compiler",
"coverage": "truffle run coverage",
"frontend:start": "react-scripts start",
"frontend:build": "react-scripts build",
"predeploy": "yarn frontend:build",
"deploy": "npx gh-pages -d build"
},
"dependencies": {
"axios": "^0.19.0",
"bignumber.js": "^8.1.1",
"chalk": "^2.4.2",
"ethers": "^4.0.37",
"fast-glob": "^3.1.0",
"inquirer": "^7.0.0",
"lodash": "^4.17.19",
"ora": "^3.4.0",
"shx": "^0.3.2",
"solidity-coverage": "^0.7.1",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@mycrypto/eth-scan": "^2.1.0",
"babel-eslint": "10.1.0",
"big.js": "^5.2.2",
"bootstrap": "^4.4.1",
"jquery": "^3.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-number-format": "^4.4.1",
"react-redux": "^7.2.0",
"react-scripts": "3.4.1",
"reactstrap": "^8.4.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"web3": "^0.20.7"
},
"devDependencies": {
"@0x/sol-compiler": "^3.1.14",
"istanbul": "^0.4.5",
"truffle": "^5.0.4",
"web3-provider-engine": "^14.1.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}