-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
159 lines (159 loc) · 5.19 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "react-redux-webpack-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development&&node scripts/start.js",
"build": "cross-env NODE_ENV=production&&node scripts/build.js",
"build-prod": "GENERATE_SOURCEMAP=false node scripts/build.js",
"test": "node scripts/test.js",
"deploy": "yarn build-prod",
"generate": "plop",
"clean": "rimraf node_modules build yarn.lock",
"upgrade-packages": "npx yarn-upgrade-all",
"eslint-check": "eslint --print-config src/index.js | eslint-config-prettier-check",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\"",
"lint:scss": "sass-lint -v",
"lint:scss:fix": "sass-lint-auto-fix --config-sass-lint .sass-lint.yml",
"lint:js": "eslint . --ext .js,.jsx",
"lint:js:fix": "npm run lint:js -- --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/ashwin1014/react-redux-webpack-starter.git"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:prettier/recommended"
]
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint",
"pretty-quick --staged"
],
"src/**/*.scss": [
"stylelint --syntax scss --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:scss:fix && lint-staged"
}
},
"precommit": "lint-staged",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-object-rest-spread": "7.11.0",
"@babel/plugin-proposal-optional-chaining": "7.11.0",
"@babel/preset-env": "^7.11.5",
"@svgr/webpack": "5.4.0",
"@testing-library/dom": "7.2.1",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"@welldone-software/why-did-you-render": "^5.0.0-alpha.1",
"babel-eslint": "10.1.0",
"babel-jest": "25.4.0",
"babel-loader": "8.1.0",
"babel-plugin-import": "1.13.0",
"babel-plugin-module-resolver": "4.0.0",
"babel-plugin-named-asset-import": "0.3.6",
"babel-plugin-transform-imports": "2.0.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"babel-plugin-transform-remove-console": "6.9.4",
"babel-plugin-transform-remove-debugger": "6.9.4",
"babel-preset-react-app": "9.1.2",
"camelcase": "6.0.0",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"circular-dependency-plugin": "^5.2.0",
"clean-webpack-plugin": "3.0.0",
"compression-webpack-plugin": "4.0.0",
"cross-env": "7.0.2",
"css-loader": "3.5.3",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.10.1",
"eslint-config-react-app": "5.2.1",
"eslint-import-resolver-babel-module": "5.1.2",
"eslint-import-resolver-webpack": "0.12.1",
"eslint-loader": "4.0.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.0",
"eslint-plugin-module-resolver": "0.17.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.8",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "6.0.0",
"fs-extra": "8.1.0",
"glob-all": "3.2.1",
"html-webpack-plugin": "4.3.0",
"husky": "4.2.5",
"identity-obj-proxy": "3.0.0",
"imagemin-gifsicle": "7.0.0",
"imagemin-jpegtran": "7.0.0",
"imagemin-mozjpeg": "9.0.0",
"imagemin-optipng": "8.0.0",
"imagemin-svgo": "8.0.0",
"imagemin-webpack": "5.1.1",
"jest": "26.1.0",
"jest-environment-jsdom-fourteen": "1.0.1",
"jest-resolve": "24.9.0",
"jest-watch-typeahead": "0.4.2",
"less-loader": "^7.0.0",
"lint-staged": "10.0.7",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.14.1",
"npm-watch": "0.6.0",
"optimize-css-assets-webpack-plugin": "5.0.3",
"plop": "2.7.1",
"pnp-webpack-plugin": "1.6.4",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-loader": "3.0.0",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "6.7.0",
"postcss-safe-parser": "^4.0.2",
"prettier": "2.0.4",
"pretty-quick": "2.0.1",
"prop-types": "15.7.2",
"react-app-polyfill": "1.0.6",
"react-dev-utils": "10.2.1",
"resolve": "1.15.0",
"resolve-url-loader": "3.1.1",
"rimraf": "3.0.2",
"sass-lint-auto-fix": "^0.21.2",
"sass-loader": "^10.0.1",
"semver": "6.3.0",
"style-loader": "^1.2.1",
"stylelint": "^13.6.1",
"stylelint-scss": "^3.18.0",
"terser-webpack-plugin": "^4.1.0",
"url-loader": "4.1.0",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "2.2.0",
"webpack-subresource-integrity": "^1.4.1",
"workbox-webpack-plugin": "5.1.3",
"yarn-upgrade-all": "^0.5.4"
},
"dependencies": {
"axios": "0.20.0",
"immer": "7.0.9",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-favicon": "^0.0.18",
"react-helmet-async": "^1.0.7",
"react-redux": "7.2.1",
"react-router-dom": "5.1.2",
"redux": "4.0.5",
"redux-thunk": "2.3.0"
}
}