-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 3.17 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
87
88
89
90
91
92
93
94
95
96
97
{
"name": "localbox",
"version": "0.13.0",
"description": "Turn your laptop or desktop into a personal local cloud to easily share files with other devices on the same Wi-Fi network.",
"private": true,
"scripts": {
"create:directories:public": "mkdirp public/uploads public/temp-chats public/videos public/audios public/images public/documents",
"create:directories:private": "mkdirp private/db private/personal-drive",
"bootstrap": "npm run create:directories:private && npm run create:directories:public",
"dev": "next dev",
"clean": "rimraf .next",
"build": "npm run clean && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"precommit": "npm run lint && npm run test && npm run build",
"all": "npm run bootstrap && npm run precommit",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yusufshakeel/localbox.git"
},
"author": "Yusuf Shakeel",
"license": "MIT",
"bugs": {
"url": "https://github.com/yusufshakeel/localbox/issues"
},
"homepage": "https://github.com/yusufshakeel/localbox#readme",
"licensePage": "https://github.com/yusufshakeel/localbox/blob/main/LICENSE",
"engines": {
"node": ">16.0.0"
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-aspect-ratio": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.6",
"@tanstack/react-table": "^8.20.6",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fs-extra": "^11.2.0",
"lucide-react": "^0.469.0",
"mime-types": "^2.1.35",
"minivium": "^0.3.0",
"multer": "^1.4.5-lts.1",
"next": "^15.1.6",
"next-auth": "^4.24.11",
"next-themes": "^0.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-toastify": "^10.0.6",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"video.js": "^8.21.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/bcrypt": "^5.0.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/mime-types": "^2.1.4",
"@types/multer": "^1.4.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/video.js": "^7.3.58",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.49",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5"
}
}