-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
{
"name": "group-chat-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.5",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.6.3",
"emoji-mart": "^3.0.1",
"firebase": "^8.2.10",
"fs": "0.0.1-security",
"moment": "^2.29.1",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-google-button": "^0.7.2",
"react-router-dom": "^6.3.0",
"react-text-format": "^2.0.28"
},
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"format": "prettier --write .",
"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": {
"@vitejs/plugin-react": "^2.0.1",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.2.1",
"vite": "^3.0.8"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}