-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 3.01 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-redux-material.ui-webpack4-boilerplate",
"sideEffects": false,
"version": "2.0.1",
"description": "React, Material-UI, Redux, Webpack 4, Babel 7",
"main": "index.js",
"author": "Kliment Petrov <[email protected]>",
"author2": "Edson Tegila <tegila@telegram>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"@babel/register": "^7.0.0",
"@material-ui/core": "^1.5.1",
"@material-ui/icons": "^2.0.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0-beta.6",
"circular-dependency-plugin": "^5.0.2",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "5.2.0",
"css-loader": "1.0.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "17.1.0",
"eslint-loader": "2.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.1",
"eventsource-polyfill": "^0.9.6",
"file-loader": "1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "23.5.0",
"mdi-material-ui": "^5.2.0",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "4.9.3",
"open-browser-webpack-plugin": "0.0.5",
"progress-bar-webpack-plugin": "^1.11.0",
"prop-types": "^15.6.2",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-hot-loader": "^4.3.5",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "4.3.1",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"rimraf": "2.6.2",
"sass-loader": "7.1.0",
"style-loader": "0.22.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "3.1.5",
"webpack-hot-middleware": "^2.22.3"
},
"scripts": {
"dev": "node_modules/.bin/webpack-dev-server --host 0.0.0.0 --mode development --hot",
"build": "NODE_ENV=production webpack -p",
"deploy": "aws s3 sync dist/ s3://materialbase/ --delete --acl public-read",
"invalidate": "aws cloudfront create-invalidation --distribution-id E1EZEW9RZWU0UD --paths /*",
"stats": "NODE_ENV=production webpack -p --profile --json > stats.json",
"clean": "rimraf dist",
"lint": "eslint ./app/**/**.js",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"precommit": "cross-env npm run lint && npm test",
"prepush": "cross-env npm run lint && npm test"
},
"jest": {
"setupFiles": [
"<rootDir>/config/jest/shim.js"
],
"mapCoverage": true,
"collectCoverageFrom": [
"app/**/*.{js,jsx,ts,tsx}"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/assetsTransformer.js",
"\\.(css|less)$": "<rootDir>/config/jest/assetsTransformer.js"
},
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
]
}
}