-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
{
"name": "react-ethereum-scaffolding",
"version": "0.0.1",
"description": "Scaffolding for an Etherum Dapp using React for the frontend",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"bootstrap": "^4.0.0-alpha.6",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-spinkit": "^2.1.1",
"web3": "^0.18.2"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"chai": "^3.5.0",
"css-loader": "^0.27.3",
"expect": "^1.20.2",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"karma-webpack-preprocessor": "^1.0.1",
"mocha": "^3.2.0",
"node-sass": "^4.5.1",
"sass-loader": "^6.0.3",
"solc-loader": "^1.1.1",
"standard": "^9.0.2",
"style-loader": "^0.16.0",
"web3-loader": "^1.1.2",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"scripts": {
"build": "webpack",
"test": "karma start",
"start": "webpack-dev-server --open",
"lint": "standard"
},
"keywords": [
"ethereum",
"react"
],
"contributors": [
{
"name": "Federico Squartini",
"email": "[email protected]"
},
{
"name": "Nicola Squartini",
"email": "[email protected]"
}
],
"license": "MIT"
}