-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.75 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
{
"name": "e-id",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"validate": "npm run lint && npm run lint:js && npm run format",
"purge": "rm -rf node_modules package-lock.json && npm cache clean --force",
"purge:all": "npm run purge && rm -rf .next build",
"reinstall": "npm run purge && npm install",
"reinstall:all": "npm run purge:all && npm install"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.0.1",
"@hookform/resolvers": "^3.3.4",
"@libsql/client": "^0.6.0",
"@mantine/hooks": "^7.8.1",
"@next/third-parties": "^14.2.3",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@tailwindcss/container-queries": "^0.1.1",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"chroma-js": "^2.4.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"country-list": "^2.3.0",
"date-fns": "^3.6.0",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.9",
"lucide-react": "^0.376.0",
"next": "14.1.4",
"next-auth": "^5.0.0-beta.17",
"react": "18.2",
"react-country-flag": "^3.1.0",
"react-dom": "18.2",
"react-github-calendar": "^4.1.3",
"react-hook-form": "^7.51.3",
"react-tweet": "^3.2.1",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^0.9.0",
"zod": "^3.23.4"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@tailwindcss/typography": "^0.5.13",
"@types/chroma-js": "^2.4.4",
"@types/country-list": "^2.1.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.20.17",
"eslint": "^8.56.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-classnames": "^0.6.6",
"prettier-plugin-merge": "^0.6.0",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"typescript": "^5"
}
}