-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.88 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.88 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "404web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:init": "node scripts/init-db.mjs",
"db:example": "ts-node --project tsconfig.node.json lib/db-usage-example.ts",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down"
},
"dependencies": {
"@headlessui/react": "^2.1.9",
"@hello-pangea/dnd": "^17.0.0",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@reduxjs/toolkit": "^2.2.8",
"@types/adm-zip": "^0.5.5",
"@types/ioredis": "^4.28.10",
"@types/jsonwebtoken": "^9.0.7",
"@types/nprogress": "^0.2.3",
"@types/pg": "^8.16.0",
"@types/react-calendar-heatmap": "^1.9.0",
"@types/react-window": "^1.8.8",
"adm-zip": "^0.5.16",
"antd": "^5.22.1",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"date-fns": "^4.1.0",
"framer-motion": "^11.11.8",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.447.0",
"minio": "^8.0.6",
"next": "^16.1.1",
"nprogress": "^0.2.0",
"pg": "^8.16.3",
"react": "^19.2.3",
"react-calendar-heatmap": "^1.9.0",
"react-dom": "^19.2.3",
"react-draggable": "^4.4.6",
"react-dropzone": "^14.2.9",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"react-redux": "^9.1.2",
"react-tooltip": "^5.28.0",
"react-turnstile": "^1.1.4",
"redis": "^5.10.0",
"redux": "^5.0.1",
"server-only": "^0.0.1",
"tailwind-merge": "^2.5.3",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@schemastore/package": "^0.0.10",
"@types/bcrypt": "^5.0.2",
"@types/js-cookie": "^3.0.6",
"@types/node": "^25.0.5",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-google-recaptcha": "^2.1.9",
"@types/uuid": "^10.0.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}