-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2 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
{
"name": "chat-real",
"version": "1.0.0",
"description": "Modern, secure and instant video chat application built with React, TypeScript, and WebRTC",
"type": "module",
"keywords": [
"video-chat",
"webrtc",
"react",
"typescript",
"p2p",
"video-call",
"conference",
"real-time"
],
"author": "Chat Real Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-username/chat-real.git"
},
"bugs": {
"url": "https://github.com/your-username/chat-real/issues"
},
"homepage": "https://github.com/your-username/chat-real#readme",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix --report-unused-disable-directives --max-warnings 0",
"lint:check": "eslint . --report-unused-disable-directives",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"build:analyze": "npm run build && npx vite-bundle-analyzer dist/assets/*.js",
"audit:fix": "npm audit fix",
"clean": "rm -rf dist node_modules/.vite"
},
"dependencies": {
"framer-motion": "^12.23.22",
"lucide-react": "^0.544.0",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/eslint__js": "^9.14.0",
"@types/react": "^18.3.25",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"audit-ci": "^7.1.0",
"esbuild": "^0.25.10",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.23",
"globals": "^16.4.0",
"typescript": "^5.0.2",
"typescript-eslint": "^8.45.0",
"vite": "^4.4.5"
}
}