forked from Techspire/tokenmint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.24 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
{
"name": "tokenmint",
"version": "1.0.5",
"private": true,
"homepage": "https://tokenmint.io/app",
"dependencies": {
"@babel/runtime": "^7.1.2",
"@fortawesome/fontawesome-svg-core": "^1.2.6",
"@fortawesome/free-solid-svg-icons": "^5.4.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"@material-ui/core": "^3.2.2",
"@material-ui/icons": "^3.0.1",
"bignumber.js": "^7.2.1",
"cryptocompare": "^0.5.0",
"cryptocurrencies": "^5.0.0",
"moment": "^2.23.0",
"openzeppelin-solidity": "2.0.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-fullstory": "^1.0.3",
"react-ga": "^2.5.3",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "2.0.4",
"react-share": "^2.3.1",
"react-transition-group": "^1.2.1",
"redux": "^4.0.0",
"redux-immutable-state-invariant": "^2.1.0",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"truffle-contract": "3.0.6",
"web3": "^1.0.0-beta.37"
},
"scripts": {
"ganache": "ganache-cli -p 8545 -l 6721975",
"compile-contracts": "npm-run-all compile:contracts copy:contracts",
"deploy-contracts-local": "truffle.cmd migrate --reset --network local",
"prestart": "npm-run-all print:start:message",
"start": "npm-run-all --parallel lint:watch test:watch react:start",
"build": "react-scripts build",
"deploy": "npm-run-all build copy:build",
"test": "mocha --require ignore-styles --reporter spec src/tools/testSetup.js \"src/**/*.test.js\"",
"contracts-tests": "truffle test ./node_modules/openzeppelin-solidity/test/token/ERC20/ERC20.test.js ./node_modules/openzeppelin-solidity/test/token/ERC20/ERC20Mintable.test.js ./test/contract/TokenMintERC20Token.test.js ./test/contract/TokenMintERC223Token.test.js --network local",
"integration-tests": "mocha --require ignore-styles --reporter spec src/tools/testSetup.js test/integration/*.js",
"eject": "react-scripts eject",
"print:start:message": "babel-node src/tools/startMessage.js",
"lint:watch": "npm run lint -- --watch",
"lint": "esw src --color",
"react:start": "react-scripts start",
"copy:build": "babel-node src/tools/copyBuild",
"test:watch": "npm run test -- --watch",
"compile:contracts": "truffle.cmd compile --all",
"copy:contracts": "babel-node src/tools/copyContracts"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"chai-bignumber": "^3.0.0",
"chalk": "^2.4.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.6.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"eslint-watch": "^4.0.2",
"fs-extra": "^7.0.0",
"ganache-cli": "6.2.3",
"ignore-styles": "^5.0.1",
"jsdom": "^12.2.0",
"mocha": "^5.2.0",
"node-fetch": "^2.2.0",
"npm-run-all": "^4.1.3",
"redux-mock-store": "^1.5.3",
"sinon": "^7.0.0",
"truffle": "^4.1.14"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}