-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.59 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.59 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
{
"name": "boilerplate",
"version": "1.0.0",
"description": "React 18 boilerplate with webpack",
"main": "index.js",
"author": "Stamatios Stamou Jr",
"license": "MIT",
"packageManager": "yarn@3.1.1",
"dependencies": {
"tomato": "link:../tomato"
},
"peerDependencies": {
"install": "^0.13.0",
"react": "^18.0.0-rc.0-next-51947a14b-20220113",
"react-dom": "^18.0.0-rc.0-next-51947a14b-20220113",
"@emotion/is-prop-valid": "^1.1.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mdx-js/react": "^1.6.22",
"@reduxjs/toolkit": "^1.7.1",
"@theme-ui/presets": "^0.13.0",
"@tippyjs/react": "^4.2.6",
"imask": "^6.2.2",
"i18next": "^21.6.4",
"react-i18next": "^11.15.2",
"date-fns": "^2.28.0",
"tippy.js": "^6.3.7",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"theme-ui": "^0.13.1"
},
"scripts": {
"start": "webpack serve --config ./webpack/webpack.dev.js --mode development",
"serve": "webpack serve --config ./webpack/webpack.prod.js",
"build": "webpack --config ./webpack/webpack.prod.js",
"extract-translations": "i18next-scanner --config src/i18n/i18next-scanner.config.js"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.16.5",
"babel-loader": "^8.2.3",
"@babel/plugin-transform-react-jsx": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-airbnb": "^5.0.0",
"copy-webpack-plugin": "^10.2.0",
"eslint": "^8.5.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.1.1",
"html-loader": "^3.0.1",
"html-webpack-plugin": "^5.5.0",
"i18next-scanner": "^3.1.0",
"image-minimizer-webpack-plugin": "^3.2.0",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"import-glob": "^1.5.0",
"react-dev-utils": "^12.0.0",
"web-vitals": "^2.1.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2",
"webpack-manifest-plugin": "^4.0.2",
"yarn-upgrade-all": "^0.5.4"
}
}