-
Notifications
You must be signed in to change notification settings - Fork 464
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.05 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.05 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "codebuff-web",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"preview": "next build && next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watchAll",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.5.0",
"@emotion/is-prop-valid": "^1.3.1",
"@hookform/resolvers": "^3.9.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.0.4",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.4",
"@react-three/drei": "^9.112.0",
"@react-three/fiber": "^8.17.7",
"@stripe/stripe-js": "^4.4.0",
"@t3-oss/env-core": "^0.7.1",
"@t3-oss/env-nextjs": "^0.11.1",
"@tanstack/react-virtual": "^3.11.0",
"@types/pg": "^8.11.10",
"aceternity-ui": "^0.2.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cobe": "^0.6.3",
"contentlayer": "^0.3.4",
"dotenv": "^16.4.5",
"framer-motion": "^11.13.3",
"lucide-react": "^0.468.0",
"next": "14.2.13",
"next-auth": "^4.24.7",
"next-contentlayer": "^0.3.4",
"next-themes": "^0.3.0",
"nextjs-linkedin-insight-tag": "^0.0.6",
"pg": "^8.13.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-spring": "^9.7.4",
"shadcn-ui": "^0.9.4",
"stripe": "^16.11.0",
"tailwind-merge": "^2.5.2",
"three": "^0.168.0",
"three-globe": "^2.31.1",
"ts-pattern": "^5.6.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@playwright/test": "^1.47.0",
"@shadcn/ui": "^0.0.4",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.4",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.11",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.11",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
}
}