-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "react-truffle-metacoin-boilerplate",
"version": "1.0.0",
"description": "",
"scripts": {
"lint": "eslint ./",
"build": "webpack -w -d --display-error-details",
"dev": "webpack-dev-server",
"start": "webpack-dev-server"
},
"main": "webpack.config.js",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.15.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"json-loader": "^0.5.7",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"truffle": "^4.0.4",
"truffle-contract": "^3.0.1",
"web3": "^0.20.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"babel": {
"presets": [
"react",
"es2015"
]
},
"devDependencies": {
"babel-eslint": "^6.1.0",
"eslint": "^2.13.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^5.2.2"
}
}