-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "react-ethereum-dapp-template",
"version": "0.0.1",
"description": "Template for Ethereum Dapp based on React with test suite",
"scripts": {
"start": "webpack-dev-server --inline --content-base build/",
"lint": "eslint --ext=js --ext=jsx --ignore-path .gitignore .",
"build": "webpack",
"test": "mocha-webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/uzyn/react-ethereum-dapp-template.git"
},
"author": "U-Zyn Chua <chua@uzyn.com>",
"license": "UNLICENSED",
"devDependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.8",
"copy-webpack-plugin": "^2.1.1",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-jsx-a11y": "^0.6.2",
"eslint-plugin-react": "^4.3.0",
"json-loader": "^0.5.4",
"mocha": "^2.5.3",
"mocha-webpack": "^0.4.0",
"solc-loader": "1.x",
"source-map-support": "^0.4.1",
"web3": "^0.15.3",
"web3-loader": "1.x",
"webpack": "^1.13.0",
"webpack-node-externals": "^1.2.0"
},
"dependencies": {
"babel-polyfill": "^6.7.4",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"webpack-dev-server": "^1.14.1"
}
}