-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "A frontent architecture for react application",
"main": "./app/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --progress --color --config ./webpack/webpack.dev.js",
"build": "webpack --hide-modules --config ./webpack/webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jassimabdullatheef/react-boilerplate.git"
},
"author": "Jassim Abdul Latheef",
"license": "ISC",
"bugs": {
"url": "https://github.com/jassimabdullatheef/react-boilerplate/issues"
},
"homepage": "https://github.com/jassimabdullatheef/react-boilerplate#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^2.0.1",
"css-loader": "^2.1.1",
"eslint": "^5.15.3",
"eslint-config-google": "^0.12.0",
"eslint-plugin-react": "^7.12.4",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"redux-devtools-extension": "^2.13.8",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-bundle-tracker": "^0.4.2-beta",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1",
"html-webpack-plugin": "^3.2.0"
},
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.11",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-helmet": "^5.2.0",
"react-redux": "^6.0.1",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1"
}
}