-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
61
62
63
64
65
{
"name": "react-avate",
"version": "1.0.0",
"description": "React boilerplate ruled by modern standarts",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack/webpack.config.js --hot",
"build": "webpack --config webpack/webpack.config.js",
"flow": "flow",
"gen": "plop --plopfile ./internals/generators/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AvoJFB/react-avate.git"
},
"keywords": [
"react",
"boilerplate"
],
"author": "avojfb",
"license": "ISC",
"bugs": {
"url": "https://github.com/AvoJFB/react-avate/issues"
},
"homepage": "https://github.com/AvoJFB/react-avate#readme",
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"flow-bin": "^0.66.0",
"html-webpack-plugin": "^3.0.4",
"less": "^3.0.1",
"less-loader": "^4.1.0",
"plop": "^1.9.1",
"postcss-loader": "^2.1.3",
"style-loader": "^0.20.2",
"url-loader": "^1.0.1",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"dotenv": "^5.0.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-hot-loader": "^4.0.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0"
}
}