-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.72 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
{
"name": "react-redux-template",
"version": "0.0.1",
"description": "Slimmer hand-rolled template for React/Redux projects",
"private": true,
"license": "ISC",
"author": "Jack Lenehan",
"scripts": {
"build": "rm -rf build && NODE_ENV=production webpack --config ./config/webpack.prod.js",
"start": "NODE_ENV=development webpack-dev-server --config ./config/webpack.dev.js",
"test": "jest --config=jest.config.js",
"test:watch": "jest --config=jest.config.js --watch",
"test:coverage": "jest --config=jest.config.js --coverage --collectCoverageFrom=src/**/*.{js,jsx}",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"format": "prettier --write 'src/**/*.js*' --config .prettierrc"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"coveralls": "^3.0.2",
"css-hot-loader": "^1.3.9",
"css-loader": "^3.0.0",
"eslint": "^6.0.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.10.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"lodash-webpack-plugin": "^0.11.5",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"postcss-scss": "^2.0.0",
"prettier": "^1.13.7",
"sass-loader": "^7.0.3",
"serve": "^11.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.36.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.3",
"webpackbar": "^3.1.3"
},
"dependencies": {
"@testing-library/react": "^8.0.1",
"autoprefixer": "^9.4.2",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^7.1.0",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3"
}
}