-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.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
{
"name": "bendd",
"version": "0.1.0",
"private": true,
"scripts": {
"test:unit": "vitest",
"test:e2e": "playwright test",
"-------------------------------------------------": "",
"dev": "next dev",
"start": "next start",
"build": "next build",
"build-stats": "ANALYZE=true pnpm build",
"------------------------------------------------": "",
"clean": "rimraf .next",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx}\" --cache",
"check-types": "tsc --noEmit --pretty",
"-----------------------------------------------": "",
"cz": "czg checkbox",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@vercel/analytics": "^1.3.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.2.10",
"lucide-react": "^0.379.0",
"next": "14.2.3",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"react-use": "^17.5.0",
"react-use-measure": "^2.1.1",
"sonner": "^1.5.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"use-sound": "^4.0.1",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.3",
"@playwright/test": "^1.44.1",
"@shikijs/transformers": "^1.10.3",
"@shikijs/twoslash": "^1.10.3",
"@tailwindcss/typography": "^0.5.13",
"@testing-library/react": "^16.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/ui": "^1.6.0",
"czg": "^1.9.1",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.6",
"postcss": "^8",
"prettier": "3.2.5",
"rehype-pretty-code": "^0.13.2",
"rehype-slug": "^6.0.0",
"remark-smartypants": "^3.0.1",
"schema-dts": "^1.1.2",
"shiki": "^1.10.2",
"shiki-magic-move": "^0.4.3",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}