-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.44 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.44 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "facade",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "11.6.0",
"@emotion/styled": "11.6.0",
"@hookform/resolvers": "2.8.0",
"@mui/icons-material": "5.11.0",
"@mui/material": "5.11.0",
"@mui/styled-engine": "5.11.0",
"@mui/styles": "5.11.0",
"@reduxjs/toolkit": "1.7.2",
"i18next": "21.6.11",
"i18next-browser-languagedetector": "6.1.3",
"notistack": "2.0.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.27.0",
"react-i18next": "11.15.4",
"react-redux": "7.2.6",
"react-router": "6.2.0",
"react-router-dom": "6.2.0",
"redux": "4.1.2",
"uuid": "8.3.2",
"yup": "0.32.11"
},
"devDependencies": {
"@babel/core": "7.17.3",
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/preset-env": "7.16.11",
"@babel/preset-flow": "7.16.7",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "11.1.0",
"@testing-library/user-event": "13.5.0",
"@tsconfig/create-react-app": "1.0.2",
"@types/i18next-browser-languagedetector": "3.0.0",
"@types/jest": "27.4.0",
"@types/lodash": "4.14.178",
"@types/node": "17.0.18",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/react-redux": "7.1.22",
"@types/react-router": "5.1.18",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.12.0",
"@typescript-eslint/parser": "5.12.0",
"babel-jest": "27.5.1",
"babel-loader": "8.2.3",
"babel-plugin-jsx-remove-data-test-id": "3.0.0",
"classnames": "2.3.2",
"clean-webpack-plugin": "4.0.0",
"compression-webpack-plugin": "9.2.0",
"core-js": "3.26.1",
"cross-env": "7.0.3",
"css-loader": "6.6.0",
"eslint": "8.9.0",
"eslint-config-react-app": "7.0.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-webpack-plugin": "3.1.1",
"fast-async": "6.3.8",
"fs-extra": "10.0.0",
"html-entities": "2.3.2",
"html-webpack-plugin": "5.5.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"jest-environment-jsdom": "27.5.1",
"mini-css-extract-plugin": "2.5.3",
"msw": "0.36.8",
"prettier": "2.5.1",
"ts-jest": "27.1.3",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.5.5",
"webpack": "5.67.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.6.0",
"whatwg-fetch": "3.6.2"
},
"scripts": {
"start": "webpack-dev-server --mode=development --open --hot",
"build": "npm run build:prom",
"build:prom": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=8192 webpack",
"build:dev": "cross-env NODE_OPTIONS=--max-old-space-size=8192 webpack",
"lint-staged": "lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bin": {
"your-boilerplate-name": "./bin/start.js"
}
}