-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
102 lines (102 loc) · 3.07 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "the_monkeys",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"test": "vitest --run",
"test:watch": "vitest",
"coverage": "vitest --coverage --run",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write",
"prepare": "husky"
},
"dependencies": {
"@editorjs/code": "2.9.3",
"@editorjs/delimiter": "1.4.2",
"@editorjs/editorjs": "2.29.1",
"@editorjs/header": "2.8.1",
"@editorjs/image": "2.9.0",
"@editorjs/list": "1.10.0",
"@editorjs/paragraph": "2.11.4",
"@editorjs/quote": "2.7.2",
"@hookform/resolvers": "^3.3.4",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.0.3",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.1.6",
"@remixicon/react": "^4.1.1",
"@tanstack/react-query": "^5.66.3",
"axios": "^1.6.8",
"bowser": "^2.11.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
"date-fns": "^3.6.0",
"embla-carousel-react": "^8.3.0",
"isomorphic-dompurify": "^2.13.0",
"jose": "^5.9.6",
"moment": "^2.30.1",
"next": "^14.2.13",
"next-themes": "^0.2.1",
"public-ip": "^7.0.1",
"react": "^18",
"react-day-picker": "^8.10.1",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-fast-marquee": "^1.6.5",
"react-hook-form": "^7.51.4",
"react-icons": "^5.0.1",
"react-select": "^5.8.1",
"react-share": "^5.1.2",
"socket.io-client": "^4.7.5",
"sockjs-client": "^1.6.1",
"swr": "^2.2.5",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.6",
"zustand": "^5.0.2"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.66.5",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/editorjs__header": "^2.6.3",
"@types/mdx": "^2.0.13",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/sockjs-client": "^1.5.4",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-istanbul": "^2.1.8",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"postcss": "^8",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
}
}