-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.73 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.73 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
{
"name": "todoassistant.web",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^2.9.10",
"@mui/icons-material": "^5.10.14",
"@mui/material": "^5.10.14",
"@mui/x-date-pickers": "^5.0.9",
"@radix-ui/react-checkbox": "^1.0.1",
"@sentry/react": "^7.23.0",
"@sentry/tracing": "^7.23.0",
"@stripe/stripe-js": "^1.46.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"atatus-js": "^4.5.0",
"axios": "^1.1.3",
"emoji-picker-react": "^4.4.7",
"firebase": "^9.14.0",
"formik": "^2.2.9",
"gapi-script": "^1.2.0",
"material-ui-phone-number": "^3.0.0",
"moment": "^2.29.4",
"mui-tel-input": "^2.1.0",
"postcss": "^8.4.19",
"pusher-js": "^7.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-facebook-login": "^4.1.1",
"react-google-login": "^5.2.2",
"react-hook-form": "^7.40.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.6.0",
"react-moment": "^1.1.2",
"react-phone-input-2": "^2.15.1",
"react-phone-number-input": "^3.2.12",
"react-router-dom": "^6.4.3",
"react-scripts": "5.0.1",
"react-select": "^5.6.1",
"react-social-login-buttons": "^3.6.1",
"react-toastify": "^9.1.1",
"reactjs-social-login": "^2.6.1",
"sass": "^1.56.1",
"styled-components": "^5.3.6",
"tiny-slider-react": "^0.5.6",
"use-detect-keyboard-open": "^0.2.0",
"use-sound": "^4.0.1",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"devDependencies": {
"babel-plugin-named-exports-order": "^0.0.2",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-react": "^7.31.11",
"husky": "^7.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.1",
"prop-types": "^15.8.1",
"webpack": "^5.75.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{js, html, css, scss, jsx}": "prettier --write",
"src/**/*.{js,jsx}": "eslint"
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}