-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.47 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
{
"name": "default",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "node convert && webpack serve --mode development --env development --config ./build_config/webpack.config.js --host 0.0.0.0",
"build": "webpack --config ./build_config/webpack.prod.config.js",
"serve": "serve -s dist"
},
"eslintConfig": {
"extends": "react-app",
"semi": [
"error",
"never"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git://github.com/samgermain/react-boiler-plate"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@fullhuman/postcss-purgecss": "^4.0.3",
"@svgr/webpack": "^5.5.0",
"@webpack-cli/serve": "^1.4.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^6.2.0",
"cssnano": "^5.0.7",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"node-sass": "^6.0.1",
"postcss": "^8.3.6",
"postcss-js": "^3.0.3",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^12.0.0",
"sharp": "^0.28.3",
"source-map-loader": "^3.0.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-manifest-plugin": "^3.1.1",
"webpack-nano": "^1.1.1",
"webpack-pwa-manifest": "^4.3.0"
},
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/runtime": "^7.14.0",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@popperjs/core": "^2.9.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"axios": "^0.21.1",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.19.0",
"bootstrap": "^5.1.0",
"emailjs-com": "^2.6.4",
"extract-loader": "^5.1.0",
"global": "^4.4.0",
"html-webpack-template": "^6.2.0",
"image-webpack-loader": "^7.0.1",
"mini-css-extract-plugin": "^2.2.0",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-device-detect": "^1.17.0",
"react-dimensions": "^1.3.1",
"react-dom": "^17.0.2",
"react-fontawesome": "^1.7.1",
"react-helmet-async": "^1.0.9",
"react-redux": "^7.2.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scroll": "^1.8.2",
"react-share": "^4.4.0",
"redux": "^4.1.0",
"serve": "^12.0.0",
"styled-components": "^5.3.0",
"web-vitals": "^2.1.0",
"workbox-core": "^6.1.5",
"workbox-expiration": "^6.1.5",
"workbox-precaching": "^6.1.5",
"workbox-routing": "^6.1.5",
"workbox-strategies": "^6.1.5",
"workbox-webpack-plugin": "^6.1.5"
}
}