-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.01 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.01 KB
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
{
"name": "webpack-react-boilerplate",
"version": "1.0.0",
"engines": {
"node": ">=14.17.0"
},
"description": "Webpack react boilerplate",
"main": "index.js",
"browserslist": [
"ie >= 11",
"last 2 version"
],
"scripts": {
"start": "node scripts/start.js",
"build": "webpack --mode=production --config buildTools/webpack.prod.js --progress --color",
"build:serve": "serve dist --cors -p 8080",
"analyze-bundle": "webpack --mode=production --config buildTools/webpack.prod.js --json > stats.json && webpack-bundle-analyzer stats.json dist",
"test": "jest -c jest/jest.config.js --verbose",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test:clear && yarn test --coverage",
"test:clear": "yarn test --clearCache",
"generate": "plop"
},
"author": "Adam Morsi",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@hot-loader/react-dom": "^17.0.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"autoprefixer": "^10.4.4",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.4",
"browserslist": "^4.20.2",
"camelcase": "^6.3.0",
"clean-webpack-plugin": "^4.0.0",
"cli-color": "^2.0.2",
"core-js": "^3.22.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"detect-port": "^1.3.0",
"dotenv": "^16.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-testing-library": "^5.3.1",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-resolve": "^27.5.1",
"jest-watch-typeahead": "^1.0.0",
"mini-css-extract-plugin": "2.6.0",
"plop": "^3.0.5",
"postcss": "^8.4.12",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.4.3",
"prettier": "^2.6.2",
"prompts": "^2.4.2",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "^0.13.9",
"resolve-url-loader": "^5.0.0",
"rework": "^1.0.1",
"rework-visit": "^1.0.0",
"sass": "^1.50.1",
"sass-loader": "^12.6.0",
"serve": "^13.0.2",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"react-error-boundary": "^3.1.4"
}
}