-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
73 lines (73 loc) · 2.06 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
{
"name": "libre_links",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"prepare": "husky install"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.2.0",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-popover": "1.0.6",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.5",
"@tanem/react-nprogress": "^5.0.42",
"@tanstack/react-query": "^4.29.15",
"@tanstack/react-query-devtools": "^4.29.19",
"@tanstack/react-table": "^8.9.3",
"@vercel/analytics": "^1.0.2",
"@vercel/og": "^0.5.13",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"boring-avatars": "^1.10.1",
"eslint-config-next": "13.4.3",
"framer-motion": "^10.12.16",
"lucide-react": "^0.220.0",
"mini-svg-data-uri": "^1.4.4",
"ms": "^2.1.3",
"nanoid": "^4.0.2",
"next": "13.4.3",
"next-auth": "^4.22.4",
"postcss": "8.4.23",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dom-confetti": "^0.2.0",
"react-dropzone": "^14.2.3",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.8.0",
"react-loader-spinner": "^5.3.4",
"react-modern-drawer": "^1.2.0",
"react-select": "^5.7.3",
"react-wrap-balancer": "^1.0.0",
"recharts": "^2.6.2",
"tailwindcss": "3.3.2",
"vaul": "^0.0.6",
"zustand": "^4.3.9"
},
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prisma": "^5.2.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}