-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.23 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.23 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
{
"name": "dustebin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && prisma migrate deploy && next build",
"start": "next start -p ${PORT:-3000} -H 0.0.0.0",
"lint": "next lint",
"postinstall": "prisma generate",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.774.0",
"@aws-sdk/s3-request-presigner": "^3.774.0",
"@google/generative-ai": "^0.24.0",
"@monaco-editor/react": "^4.7.0",
"@prettier/plugin-xml": "^3.4.1",
"@prisma/client": "^6.4.1",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@types/bcrypt": "^5.0.2",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"exif-reader": "^2.0.2",
"highlight.js": "^11.11.1",
"lucide-react": "^0.479.0",
"monaco-editor": "^0.52.2",
"nanoid": "^5.1.3",
"next": "15.5.15",
"next-themes": "^0.4.4",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sharp": "^0.33.5",
"sonner": "^2.0.1",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/eslintrc": "^3",
"@shadcn/ui": "^0.0.4",
"@tailwindcss/postcss": "^4",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"eslint": "^9",
"eslint-config-next": "15.2.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prisma": "^6.4.1",
"tailwindcss": "^4",
"typescript": "^5"
},
"pnpm": {
"ignoredBuiltDependencies": [
"bcrypt"
]
}
}