-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "Simple react boilerplate for react apps with, webpack, es6, babel, webpack-dev-server,eslint and react-hot-loader",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server",
"build": "webpack -p --config webpack.config.production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skorp/react-boilerplate.git"
},
"keywords": [
"react",
"webpack",
"babel",
"react-hot-loader",
"webpack-dev-server",
"eslint"
],
"author": "Kadir Oezdemir",
"license": "",
"bugs": {
"url": "https://github.com/skorp/react-boilerplate/issues"
},
"homepage": "https://github.com/skorp/react-boilerplate#readme",
"dependencies": {
"react": "^15.2.0",
"react-dom": "^15.2.0"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"eslint": "^3.0.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.4.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"html-webpack-plugin": "^2.22.0",
"react-hot-loader": "^1.3.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}