-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.86 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
{
"name": "confessions-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "react-scripts build",
"build:vite": "vite build",
"preview": "vite preview",
"serve": "serve -s build",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --check ./src",
"prepare": "husky install"
},
"lint-staged": {
"./src/**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.8",
"@mui/material": "^5.11.2",
"@tanstack/react-query": "^4.18.0",
"axios": "^1.4.0",
"javascript-time-ago": "^2.5.9",
"nanoid": "^4.0.2",
"random-avatar-generator": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-easy-linkify": "^1.0.8",
"react-error-boundary": "^3.1.4",
"react-loader-spinner": "^5.3.4",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"react-time-ago": "^7.2.1",
"react-web-share": "^2.0.2"
},
"devDependencies": {
"@headlessui/tailwindcss": "^0.1.3",
"@tanstack/react-query-devtools": "^4.18.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.8",
"eslint": "^8.40.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"postcss": "^8.4.16",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.0",
"tailwindcss": "^3.2.4",
"vite": "^4.3.9"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}