-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.57 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint app/*.tsx app/**/*.tsx",
"format": "prettier --write * "
},
"dependencies": {
"@clerk/nextjs": "^4.29.12",
"@portabletext/react": "^3.0.11",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"embla-carousel-autoplay": "^8.0.0",
"embla-carousel-react": "^8.0.0",
"framer-motion": "^11.0.20",
"husky": "^9.0.11",
"lucide-react": "^0.298.0",
"mini-svg-data-uri": "^1.4.4",
"next": "^14.1",
"next-themes": "^0.2.1",
"react": "^18.2",
"react-dom": "^18",
"react-intersection-observer": "^9.8.1",
"styled-components": "^6.0",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"turbo": "^1.12.5",
"ws": "^8.16.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20",
"@types/react": "^18.2.64",
"@types/react-dom": "^18",
"@types/ws": "^8.5.10",
"autoprefixer": "^10.0.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.1.0",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn format"
}
}
}