-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.27 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
{
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"clean": "npx rimraf ./node_modules",
"lint:fix": "eslint --fix .",
"check-types": "tsc --pretty --noEmit",
"format": "prettier --write .",
"pre-commit": "pnpm lint:fix && pnpm check-types && pnpm format && pnpm build && git add ."
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/material": "^5.15.14",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@tiptap/core": "^2.3.2",
"@tiptap/extension-blockquote": "^2.3.2",
"@tiptap/extension-bullet-list": "^2.3.2",
"@tiptap/extension-code": "^2.3.2",
"@tiptap/extension-heading": "^2.3.2",
"@tiptap/extension-list-item": "^2.3.2",
"@tiptap/extension-ordered-list": "^2.3.2",
"@tiptap/extension-typography": "^2.3.2",
"@tiptap/extension-underline": "^2.3.2",
"@tiptap/pm": "^2.3.2",
"@tiptap/react": "^2.3.2",
"@tiptap/starter-kit": "^2.3.2",
"axios": "^1.6.8",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"firebase": "^10.11.0",
"html-react-parser": "^5.1.10",
"lucide-react": "^0.233.0",
"moment": "^2.30.1",
"next": "latest",
"next-auth": "^4.24.7",
"next-pwa": "^5.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-icons": "^4.12.0",
"react-toastify": "^10.0.5",
"rimraf": "^5.0.5",
"sharp": "^0.32.6",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-react": "^7.34.1",
"husky": "^8.0.3",
"postcss": "^8.4.38",
"postcss-nesting": "^12.1.0",
"postcss-preset-env": "^9.5.2",
"prettier": "2.7.1",
"tailwindcss": "^3.4.3",
"typescript": "5.2.2"
}
}