-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.71 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.71 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "whatsapp-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest --run",
"test:watch": "vitest",
"test:ci": "vitest --run --coverage --reporter=verbose",
"ci": "yarn lint && yarn test:ci && yarn build",
"lhci": "lhci autorun --collect.url=http://localhost:3000 --collect.numberOfRuns=1",
"check:headers": "bash -lc 'set -e; H=\"$(curl -sI http://localhost:3000)\"; echo \"$H\"; echo \"$H\" | grep -qi \"x-frame-options: deny\"; echo \"$H\" | grep -qi \"x-content-type-options: nosniff\"; echo \"$H\" | grep -qi \"referrer-policy: strict-origin-when-cross-origin\"; echo \"$H\" | grep -qi \"permissions-policy\"; echo \"$H\" | grep -qi \"content-security-policy\"'",
"prepare": "husky"
},
"dependencies": {
"@clerk/clerk-react": "^5.40.0",
"@clerk/nextjs": "^6.30.0",
"@ducanh2912/next-pwa": "^10.2.9",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-slot": "^1.2.3",
"@zegocloud/zego-uikit-prebuilt": "^2.15.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.25.4",
"emoji-picker-react": "^4.13.2",
"lucide-react": "^0.539.0",
"next": "15.4.6",
"next-themes": "^0.4.6",
"openai": "^5.12.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-player": "^2.15.1",
"sonner": "^2.0.7",
"svix": "^1.71.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@lhci/cli": "^0.13.0",
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "15.4.6",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.4.3",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.10",
"tw-animate-css": "^1.3.6",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,scss,md,json}": [
"prettier --write",
"eslint --fix"
]
}
}