-
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.49 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.49 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": "leviterry-dev",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"ws": "bun run websocket-server.ts",
"dev:all": "concurrently \"npm run dev\" \"npm run ws\"",
"codegen": "dotenv -e .env.development.local -- graphql-codegen --config codegen.yml --verbose"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1004.0",
"@base-ui/react": "^1.3.0",
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-brands-svg-icons": "^6.3.0",
"@fortawesome/free-regular-svg-icons": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-separator": "^1.1.7",
"@tailwindcss/postcss": "^4.2.2",
"altcha": "^2.0.2",
"altcha-lib": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"embla-carousel-react": "^8.6.0",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"formidable": "^3.5.4",
"graphql": "^16.13.0",
"lucide-react": "^1.7.0",
"next": "^15.5.12",
"next-recaptcha-v3": "^1.4.1",
"nodemailer": "^7.0.3",
"octokit": "^4.0.2",
"postcss": "^8.5.8",
"react": "18.2.0",
"react-documents": "^1.2.1",
"react-dom": "18.2.0",
"react-pdf": "^10.0.1",
"reactjs-file-preview": "^1.0.11",
"shadcn": "^4.1.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.4.0",
"ws": "^8.18.0",
"yaml": "^2.8.3",
"yaml-loader": "^0.9.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@graphql-codegen/cli": "6.1.2",
"@graphql-codegen/client-preset": "5.2.3",
"@graphql-codegen/introspection": "5.0.0",
"@octokit/types": "^13.6.1",
"@types/bun": "^1.1.6",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/formidable": "^3.4.5",
"@types/node": "18.0.4",
"@types/nodemailer": "^6.4.17",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/react-pdf": "^7.0.0",
"@types/ws": "^8.5.11",
"concurrently": "^8.2.2",
"dotenv-cli": "^8.0.0",
"eslint": "8.19.0",
"eslint-config-next": "12.2.2",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^7.0.1",
"typescript": "^6.0.2"
}
}