-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.04 KB
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
{
"name": "react-training",
"version": "0.1.0",
"description": "React Training",
"main": "index.js",
"author": "Bilal Cinarli",
"license": "MIT",
"private": false,
"scripts": {
"start": "nodemon --watch webpack.config.js --exec \"webpack-dev-server --progress --colors --inline --env development\"",
"build": "webpack --config webpack.production.config.js --progress --colors"
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.32",
"@babel/preset-env": "^7.0.0-beta.32",
"@babel/preset-react": "^7.0.0-beta.32",
"babel-loader": "8.0.0-beta.0",
"eslint": "^4.12.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.5.1",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"nodemon": "^1.12.1",
"react-hot-loader": "^3.1.3",
"redbox-react": "^1.5.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.5"
}
}