-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.14 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.14 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": "onku",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"svgr": "svgr --icon --typescript --no-prettier --out-dir src/assets/svgComponents public/common --ignore-existing",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-switch": "^1.2.6",
"@tanstack/react-query": "^5.90.2",
"@tiptap/extension-bullet-list": "^3.10.1",
"@tiptap/extension-heading": "^3.10.1",
"@tiptap/extension-link": "^3.10.1",
"@tiptap/extension-list-item": "^3.10.1",
"@tiptap/extension-ordered-list": "^3.10.1",
"@tiptap/react": "^3.10.1",
"@tiptap/starter-kit": "^3.10.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint-plugin-prettier": "^5.5.4",
"framer-motion": "^12.23.22",
"heic2any": "^0.0.4",
"isomorphic-dompurify": "^2.31.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.548.0",
"next": "15.5.4",
"qrcode.react": "^4.2.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-loading-skeleton": "^3.5.0",
"react-query": "^3.39.3",
"tailwind-merge": "^3.3.1",
"typescript-eslint": "^8.45.0",
"vaul": "^1.1.2",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.56.1",
"@svgr/cli": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.36.0",
"eslint-config-next": "15.5.4",
"jsdom": "^27.2.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}