-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
123 lines (123 loc) · 2.99 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
120
121
122
123
{
"name": "starwars",
"version": "1.1.0",
"private": false,
"homepage": "https://swdb.web.app",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@faker-js/faker": "^8.0.1",
"@fontsource/poppins": "^4.5.10",
"@fontsource/roboto": "^4.5.8",
"@loadable/component": "^5.15.2",
"@mui/icons-material": "^5.10.9",
"@mui/joy": "5.0.0-alpha.59",
"@mui/lab": "^5.0.0-alpha.121",
"@mui/material": "^5.10.13",
"@mui/x-date-pickers": "^6.6.0",
"@reduxjs/toolkit": "^1.9.2",
"animate.css": "^4.1.1",
"axios": "^0.27.2",
"axios-hooks": "^4.0.0",
"date-fns": "^2.30.0",
"firebase": "^9.10.0",
"formik": "^2.2.9",
"gh-pages": "^4.0.0",
"immer": "^9.0.17",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"object-hash": "^3.0.0",
"react": "^18.2.0",
"react-custom-scroll": "^5.0.0",
"react-dom": "^18.2.0",
"react-firebase-hooks": "^5.0.3",
"react-hot-toast": "^2.4.1",
"react-infinite-scroll-component": "^6.1.0",
"react-moment": "^1.1.2",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.2",
"react-scripts": "5.0.1",
"react-tooltip": "^5.11.2",
"react-use": "^17.4.0",
"redux-persist": "^6.0.0",
"rxjs": "^7.8.0",
"swr": "^2.0.0",
"typescript": "^4.8.4",
"urlcat": "^3.0.0",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/loadable__component": "5.13.4",
"@types/lodash": "4.14.190",
"@types/node": "^16.18.3",
"@types/object-hash": "^2.2.1",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"eslint": "^8.30.0",
"eslint-plugin-react": "^7.31.11",
"sass": "^1.54.9"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint": "npx eslint --ext .js,.jsx ."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:react/recommended"
],
"rules": {
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-unused-vars": "off",
"react/prop-types": "warn",
"semi": [
1,
"always"
],
"react/jsx-curly-spacing": [
1,
"always"
],
"no-use-before-define": [
0,
{
"functions": false
}
],
"react/jsx-indent": [
1,
2
],
"space-in-parens": [
1,
"never"
],
"no-const-assign": [
2
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}