-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.41 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
{
"name": "react-startup",
"version": "1.0.0",
"description": "Project structure to start developing ReactJS web application",
"main": "index.js",
"author": "Mindaugas Varkalys",
"license": "MIT",
"private": false,
"scripts": {
"build": "webpack",
"build-prod": "webpack --config ./webpack.production.config.js",
"server": "webpack-dev-server",
"server-public": "webpack-dev-server --port 80 --host",
"eslint": "eslint src/**",
"eslint-fix": "eslint src/** --fix"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"babel-loader": "^8.0.0-beta.4",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"node-sass": "^4.9.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.6",
"webpack": "^4.12.0"
},
"devDependencies": {
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}