-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "ethereum-webpack-example-dapp",
"version": "1.0.1",
"description": "Example Ethereum (Solidity) smart contract decentralized app with Webpack.",
"main": "index.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "mocha-webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/uzyn/ethereum-webpack-example-dapp"
},
"keywords": [
"webpack",
"decentralized app",
"decentralization",
"ethereum",
"solidity",
"dapp",
"template"
],
"bugs": {
"url": "https://github.com/uzyn/ethereum-webpack-example-dapp/issues"
},
"author": "U-Zyn Chua <[email protected]> (http://uzyn.com)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"json-loader": "^0.5.4",
"solc-loader": "1.x",
"web3": "^0.15.3",
"web3-loader": "1.x",
"webpack": "^1.13.0",
"mocha": "*",
"chai": "*",
"mocha-webpack": "*",
"source-map-support": "*",
"webpack-node-externals": "*"
}
}