forked from 0xsequence/erc-1155
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.29 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
{
"name": "multi-fungible-tokens",
"version": "0.1.0",
"description": "Multi Fungible Token contract for Ethereum",
"repository": "https://github.com/horizon-games/multi-fungible-tokens",
"license": "MIT",
"keywords": [
"token",
"ERC",
"Fungible",
"Non-Fungible",
"ethereum",
"horizongames"
],
"scripts": {
"build": "rm -rf ./build && truffle compile",
"migrate": "truffle migrate --network ganache",
"staging:migrate": "truffle migrate --network rinkeby",
"ganache": "ganache-cli -d -e 1000000000 -g 1 -l 4000000000000000",
"ganache:verbose": "ganache-cli -d -e 1000000000 -g 1 -l 4000000000000000 -v",
"testrpc": "yarn ganache",
"test": "NODE_ENV=test scripts/test.sh",
"console": "truffle console",
"coverage": "scripts/coverage.sh"
},
"dependencies": {
"eth-sig-util": "^1.4.2",
"ethers": "^3.0.15",
"ethjs": "^0.3.3",
"ethjs-abi": "^0.2.1",
"ganache-cli": "6.1.0",
"math": "^0.0.3",
"openzeppelin-solidity": "1.9.0",
"solc": "^0.4.24",
"web3-utils": "^1.0.0-beta.33"
},
"devDependencies": {
"babel-core": "6.17.0",
"babel-eslint": "7.1.1",
"babel-jest": "17.0.2",
"babel-loader": "6.2.7",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react-app": "^2.0.1",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0",
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"chai-bignumber": "^2.0.0",
"coveralls": "^2.13.1",
"eslint": "3.19.0",
"eslint-config-react-app": "^0.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "1.6.0",
"eslint-plugin-flowtype": "2.21.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-standard": "^3.0.1",
"ethereumjs-testrpc": "^6.0.1",
"ethereumjs-util": "^5.1.2",
"mocha-lcov-reporter": "^1.3.0",
"mocha-shared": "^0.2.0",
"solidity-coverage": "^0.4.3",
"solium": "^1.1.2",
"truffle": "^4.1.11",
"truffle-contract": "^1.1.11",
"truffle-hdwallet-provider": "^0.0.3",
"truffle-solidity-loader": "0.0.8",
"url-loader": "0.5.7"
}
}