-
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.64 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.64 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": "webpack-starter",
"version": "1.0.0",
"description": "quickstart react + webpack",
"main": "index.js",
"scripts": {
"build-dev": "export NODE_ENV=development&& webpack --progress",
"build-prod": "export NODE_ENV=production&& webpack --progress",
"start-dev": "export NODE_ENV=development&& webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:yaroslav-perec/webpack-starter.git"
},
"author": "Yaroslav Perec",
"license": "MIT License",
"bugs": {
"url": "https://github.com/yaroslav-perec/webpack-starter/issues"
},
"dependencies": {
"autoprefixer": "^7.1.6",
"extract-text-webpack-plugin": "^3.0.2",
"postcss-loader": "^2.0.9",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.1.3",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.12.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.7.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"redux-devtools": "^3.4.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-config": "^7.4.0",
"webpack-dev-server": "^2.9.2"
}
}