-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.58 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emoji-mart/data": "^1.1.2",
"@emoji-mart/react": "^1.1.1",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/base": "^5.0.0-alpha.128",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.4",
"@mui/x-data-grid": "^6.3.1",
"@mui/x-date-pickers": "^6.3.1",
"@popperjs/core": "^2.11.7",
"@pubnub/react-chat-components": "^0.30.0",
"@reduxjs/toolkit": "^1.9.5",
"@tanstack/react-table": "^8.9.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@tiptap/extension-underline": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/react": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"aws-sdk": "^2.1575.0",
"axios": "^1.4.0",
"bootstrap": "^5.2.3",
"chart.js": "^4.3.0",
"chartjs-plugin-annotation": "^3.0.1",
"dayjs": "^1.11.7",
"emoji-mart": "^5.5.2",
"firebase": "^10.3.1",
"pubnub": "^7.3.2",
"pubnub-react": "^3.0.2",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-chat-engine": "^1.11.28",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-redux": "^8.0.5",
"react-router-dom": "^6.11.1",
"react-scripts": "5.0.1",
"redux-persist": "^6.0.0",
"redux-saga": "^1.2.3",
"swiper": "^9.3.0",
"typeface-inter": "^3.18.1",
"uuid": "^9.0.1",
"web-vitals": "^3.3.1"
},
"scripts": {
"start": "PORT=3006 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "2.8.8"
},
"lint-staged": {
"**/*.{js,jsx}": [
"eslint --fix",
"prettier --write"
]
}
}