-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
83 lines (83 loc) · 2.43 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
{
"name": "token-transfer-dapp",
"version": "1.1.1",
"description": "A decentralized dapp, to make quick ERC20, enabled tokens transfer",
"main": "src/main.js",
"directories": {
"test": "test"
},
"scripts": {
"copy:cname": "cp ./src/www/CNAME ./dist",
"deploy": "git subtree push --prefix dist origin gh-pages",
"build": "cross-env NODE_ENV=production UV_THREADPOOL_SIZE=100 webpack --config webpack.config.prod",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"start": "cross-env NODE_ENV=development webpack-dev-server --colors --config webpack.config",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ico-busses/token-transfer-dapp.git"
},
"keywords": [
"ethereum",
"ethereum-dapp",
"erc20",
"erc20-tokens",
"transfer",
"decentralized",
"dapp"
],
"author": "https://github.com/ico-busses",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ico-busses/token-transfer-dapp/issues"
},
"homepage": "https://github.com/ico-busses/token-transfer-dapp#readme",
"browserslist": [
"last 3 versions"
],
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.15.1",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"postcss-loader": "^3.0.0",
"react-hot-loader": "^4.12.14",
"style-loader": "^1.0.0",
"url-loader": "^2.1.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"clipboard-copy": "^3.1.0",
"eth-contract-metadata": "git+https://github.com/MetaMask/eth-contract-metadata.git",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-leaf-carousel": "^1.2.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-toastify": "^5.4.0",
"semantic-ui-react": "^0.88.1",
"web3": "^1.2.1"
},
"pre-commit": [
"lint"
]
}