-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 3.22 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-boilerplate",
"version": "1.0.0",
"repository": "https://github.com/NoCountryForGeeks/react-boilerplate",
"author": "ivanrodricalleja <[email protected]>, franmolmedo <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"start:docker": "docker-compose -f ./config/docker/docker-compose-dev.yml up",
"start:docker:editor": "docker-compose -f ./config/docker/docker-compose-dev-editor.yml up",
"build": "webpack --env production",
"start:prod:docker": "docker-compose -f ./config/docker/docker-compose.yml up --build",
"build:docker": "./config/docker/docker-compose build -f ./config/docker/docker-compose.yml",
"lint:js": "eslint ./app --ext .js --ext .jsx --cache",
"lint:style": "stylelint ./app/**/*.scss",
"stats": "webpack --env production --profile --json > stats.json",
"stats:launch:bundleAnalyzer": "webpack-bundle-analyzer stats.json"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.56",
"@babel/core": "^7.0.0-beta.56",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.56",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.56",
"@babel/preset-env": "^7.0.0-beta.56",
"@babel/preset-react": "^7.0.0-beta.56",
"autoprefixer": "^8.6.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^8.0.0-beta.4",
"brotli-webpack-plugin": "^1.0.0",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.11",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"eslint": "^4.18.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-smells": "^1.0.1",
"eslint-plugin-xo": "^1.0.0",
"file-loader": "^1.1.11",
"git-revision-webpack-plugin": "^3.0.3",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.1",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"offline-plugin": "^5.0.5",
"optimize-css-assets-webpack-plugin": "^4.0.2",
"postcss-loader": "^2.1.5",
"react-hot-loader": "^4.3.3",
"sass-loader": "^7.0.3",
"script-loader": "^0.7.2",
"style-loader": "^0.21.0",
"stylelint": "^9.3.0",
"stylelint-scss": "^3.1.3",
"svg-sprite-loader": "^3.9.0",
"uglifyjs-webpack-plugin": "^1.2.6",
"webapp-webpack-plugin": "^2.2.0",
"webpack": "^4.12.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-manifest-plugin": "^2.0.3",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.56",
"@babel/runtime": "^7.0.0-beta.56",
"i18next": "^11.3.2",
"i18next-browser-languagedetector": "^2.2.0",
"i18next-xhr-backend": "^1.5.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-i18next": "^7.6.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-act": "^1.7.4",
"redux-saga": "^0.16.0"
}
}