-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 4.86 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "react-boilerplate with Babel 7 and Webpack 4",
"private": true,
"author": "toddmath",
"license": "MIT",
"sideEffects": [
"*.css",
"*.scss"
],
"browserslist": "> 0.25%, not dead",
"scripts": {
"start": "webpack-dev-server --config build-utils/webpack.config.js --env.env=dev --watch",
"start:chrome": "webpack-dev-server --config build-utils/webpack.config.js --env.env=dev --env.addon=chrome --watch",
"start:firefox": "webpack-dev-server --config build-utils/webpack.config.js --env.env=dev --env.addon=firefox --watch",
"build": "webpack --config build-utils/webpack.config.js --env.env=prod",
"build:analyze": "yarn build --env.addon=bundleanalyze --env.addon=bundlevisualizer",
"build:stats": "webpack --config build-utils/webpack.config.js --env.env=prod --profile --json > stats.json",
"svgr": "svgr -d src/Icons/ assets/",
"serve:firefox": "browser-sync start --server --files 'dist/**/*.css, dist/**/*.html, dist/**/*.js, !node_modules/**/*, !src/**/*' --directory --port 7777 --browser 'Firefox Developer Edition'",
"serve": "browser-sync start --server 'dist' --files 'dist/**/*.css, dist/**/*.html, dist/**/*.js, !node_modules/**/*, !src/**/*' --directory --port 7777 --browser 'Google Chrome'",
"serve:built": "concurrently \"yarn:build\" \"yarn:serve\""
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-flow-strip-types": "^7.9.0",
"@babel/plugin-transform-react-constant-elements": "^7.9.0",
"@babel/plugin-transform-react-display-name": "^7.8.3",
"@babel/plugin-transform-react-inline-elements": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@loadable/babel-plugin": "^5.12.0",
"@svgr/cli": "^5.3.1",
"@svgr/webpack": "^5.3.1",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
"@testing-library/user-event": "^10.1.2",
"autoprefixer": "^10.2.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"chalk": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.1.0",
"concurrently": "^5.2.0",
"css-loader": "^3.5.2",
"cssnano": "^4.1.10",
"dotenv-webpack": "^1.7.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-node": "^0.3.3",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"execa": "^4.0.1",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.0",
"glob": "^7.1.6",
"globby": "^11.0.0",
"html-webpack-plugin": "^4.2.0",
"husky": "^4.2.5",
"image-webpack-loader": "^6.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"lodash-webpack-plugin": "^0.11.5",
"mini-css-extract-plugin": "^0.9.0",
"mkdirp": "^1.0.4",
"node-sass": "^7.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^8.3.0",
"postcss-extend": "^1.0.5",
"postcss-import": "^12.0.1",
"postcss-loader": "^4.0.3",
"postcss-nested": "^4.2.1",
"postcss-nested-ancestors": "^2.0.0",
"postcss-nested-props": "^2.0.0",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.1",
"react-hot-loader": "^4.12.20",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^3.0.3",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"webpack-visualizer-plugin": "^0.1.11",
"workbox-webpack-plugin": "^5.1.3"
},
"dependencies": {
"@loadable/component": "^5.12.0",
"date-fns": "^2.12.0",
"lodash-es": "^4.17.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "^2.2.4"
}
}