-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.34 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@sentry/react": "^6.12.0",
"@sentry/tracing": "^6.12.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"dotenv-flow-cli": "^1.0.0",
"emoji-regex": "^9.2.2",
"formik": "^2.2.8",
"graphql": "^15.5.0",
"graphql-ws": "^5.6.2",
"history": "^5.0.1",
"html-react-parser": "^1.4.5",
"i18next": "^21.6.12",
"i18next-browser-languagedetector": "^6.1.3",
"iframe-resizer": "^4.3.2",
"iframe-resizer-react": "^1.1.0",
"immer": "^9.0.6",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"notistack": "^1.0.9",
"process": "^0.11.10",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-emoji-render": "^1.2.4",
"react-helmet": "^6.1.0",
"react-i18next": "^11.15.5",
"react-icons": "^4.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-redux": "^7.2.5",
"react-router-dom": "^5.1.2",
"react-scripts": "4.0.1",
"react-slick": "^0.27.13",
"redux": "^4.1.1",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"slick-carousel": "^1.8.1",
"subscriptions-transport-ws": "^0.9.19",
"yup": "^0.32.9"
},
"devDependencies": {
"husky": "1.3.1",
"lint-staged": "8.1.0",
"prettier": "^2.4.0"
},
"scripts": {
"start": "dotenv-flow -- react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prettier": "prettier --check \"src/**/*.js\"",
"prettier:fix": "prettier --write \"src/**/*.js\""
},
"lint-staged": {
"src/**/*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": "16"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}