-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.38 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
{
"name": "tumblr-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vite jest",
"vite_build": "vite build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"preview": "vite preview",
"prepare": "husky",
"format": "prettier --write ."
},
"dependencies": {
"@headlessui/react": "^2.1.8",
"@popperjs/core": "^2.11.8",
"@reduxjs/toolkit": "^2.2.1",
"axios": "^1.4.0",
"bootstrap": "^5.3.0",
"bootstrap-icons": "^1.10.5",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^11.9.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"lucide-react": "^0.439.0",
"react": "^18.2.0",
"react-bootstrap": "^2.7.4",
"react-dom": "^18.2.0",
"react-hook-form": "^7.53.0",
"react-hot-toast": "^2.4.1",
"react-markdown": "^9.0.1",
"react-quill": "^2.0.0",
"react-redux": "^8.1.1",
"react-router-dom": "^6.13.0",
"react-select": "^5.7.3",
"react-syntax-highlighter": "^15.6.1",
"react-tag-input": "^6.10.3",
"redux-persist": "^6.0.0",
"remark-gfm": "^4.0.0",
"spinners-react": "^1.0.7",
"tailwind-merge": "^2.5.4",
"universal-cookie": "^7.2.1"
},
"devDependencies": {
"@hookform/resolvers": "^3.9.0",
"@types/lodash": "^4.14.195",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.3.4",
"http-proxy-middleware": "^2.0.6",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.3",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"zod": "^3.23.8"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}