-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.13 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
{
"name": "deardiary",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"lint-staged": {
"*.{json,md,html}": [
"npx prettier --write"
],
"*.{css}": [
"npx prettier --write"
],
"*.{jsx,js,ts,tsx}": [
"npx prettier --write"
]
},
"dependencies": {
"@clerk/nextjs": "^5.2.2",
"@clerk/themes": "^2.1.10",
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"framer-motion": "^11.2.4",
"jose": "^5.2.4",
"mongoose": "^8.3.1",
"next": "14.1.4",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.2.1",
"tailwind-merge": "^2.3.0",
"zod": "^3.23.5"
},
"devDependencies": {
"@types/node": "20.14.10",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.7",
"postcss": "^8",
"prettier": "^3.3.2",
"tailwindcss": "^3.3.0"
}
}