-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
115 lines (115 loc) · 3.62 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
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "scicommons-frontend-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:strict": "next lint --dir .",
"eslint": "eslint . --ext .ts,.tsx,.js,.jsx",
"prettier": "prettier --write */**/*.{js,jsx,json,ts,tsx,scss,css,md}",
"prepare": "husky",
"generate-api": "npx orval",
"check-types": "tsc --noEmit",
"test": "jest"
},
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.7",
"@headlessui/tailwindcss": "^0.2.1",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@remixicon/react": "^4.2.0",
"@tanstack/react-query": "^5.40.0",
"@testing-library/user-event": "^14.5.2",
"@tiptap/extension-placeholder": "^2.4.0",
"@tiptap/extension-underline": "^2.4.0",
"@tiptap/pm": "^2.4.0",
"@tiptap/react": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"@tremor/react": "^3.17.3",
"@yoopta/accordion": "^4.6.6",
"@yoopta/action-menu-list": "^4.6.6",
"@yoopta/blockquote": "^4.6.5-rc.1",
"@yoopta/callout": "^4.6.6",
"@yoopta/editor": "^4.6.5-rc.1",
"@yoopta/exports": "^4.6.6",
"@yoopta/headings": "^4.6.5-rc.1",
"@yoopta/link": "^4.6.5-rc.1",
"@yoopta/link-tool": "^4.6.6",
"@yoopta/lists": "^4.6.5-rc.1",
"@yoopta/marks": "^4.6.6",
"@yoopta/paragraph": "^4.6.5-rc.1",
"@yoopta/toolbar": "^4.6.6",
"axios": "^1.7.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"dayjs": "^1.11.11",
"framer-motion": "^11.2.6",
"js-cookie": "^3.0.5",
"ldrs": "^1.0.2",
"lucide-react": "^0.379.0",
"next": "14.2.3",
"next-themes": "^0.3.0",
"nextjs-toploader": "^1.6.12",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.51.5",
"react-hot-toast": "^2.4.1",
"react-loader-spinner": "^6.1.6",
"react-quill": "^2.0.0",
"slate": "^0.103.0",
"slate-react": "^0.107.1",
"sonner": "^1.5.0",
"tailwind-merge": "^2.3.0",
"use-debounce": "^10.0.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@tailwindcss/forms": "^0.5.7",
"@testing-library/dom": "^10.3.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.0.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-testing-library": "^6.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"msw": "^2.3.0",
"orval": "^6.29.1",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}