-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.61 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.61 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "Minimal setup for react with webpack",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --config ./config/webpack.dev.js",
"build-dev": "webpack --config ./config/webpack.dev.js",
"start": "webpack-dev-server --port $PORT --host 0.0.0.0 --config ./config/webpack.prod.js",
"build": "NODE_ENV=production && webpack --config ./config/webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shenato/react-boilerplate.git"
},
"keywords": [
"Boilerplate",
"React",
"Webpack"
],
"author": "Omar ElGaml",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.0",
"dotenv": "^7.0.0",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^5.0.2",
"history": "^4.10.1",
"html-webpack-plugin": "^3.2.0",
"minireset.css": "0.0.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-lazyload": "^3.0.0",
"react-redux": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"style-loader": "^0.23.1",
"styled-components": "^4.4.1",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"devDependencies": {
"eslint": "^6.8.0"
}
}