forked from tonghohin/screen-sharing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.66 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.66 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
{
"name": "share-your-screen",
"version": "0.1.0",
"description": "A real-time screen sharing application allowing users to easily share their screen with others with a simple code.",
"private": true,
"license": "MIT",
"author": "Hin",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@microsoft/clarity": "^1.0.0",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.503.0",
"next": "^15.4.4",
"next-themes": "^0.4.6",
"peerjs": "^1.5.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sonner": "^2.0.3",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.5",
"@types/node": "20.6.2",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"eslint": "^9.15.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss": "8.4.30",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.1.5",
"tw-animate-css": "^1.2.8",
"typescript": "5.2.2"
}
}