-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.03 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.03 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
{
"name": "dcdevs.me",
"version": "0.1.0",
"homepage": "https://dcdevs.me",
"author": "Diego C. Silva <diegocaetano444@outlook.com>",
"private": true,
"scripts": {
"dev:content": "velite --watch",
"build:content": "velite --clean",
"dev": "next dev",
"build": "pnpm build:content && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest",
"test:watch": "test --watch",
"email:dev": "email dev",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@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-hover-card": "^1.0.7",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-email/components": "^0.0.15",
"@react-email/tailwind": "^0.0.14",
"@swc/core": "^1.3.105",
"@types/node": "^18.11.11",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vercel/analytics": "^1.2.2",
"axios": "^1.6.7",
"class-variance-authority": "^0.7.0",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"dotenv-load": "^2.0.1",
"embla-carousel-react": "8.0.0-rc22",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.4",
"hastscript": "^9.0.0",
"next": "14.1.4",
"next-env": "^1.1.1",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-email": "2.1.0",
"react-hook-form": "^7.51.0",
"react-query": "^3.39.3",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.13.1",
"rehype-slug": "^6.0.0",
"remark-gfm": "^3.0.1",
"resend": "^3.2.0",
"sharp": "^0.33.2",
"shiki": "^1.4.0",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7",
"typescript": ">=4.3.5 <5.4.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@shikijs/rehype": "^1.2.0",
"@swc/jest": "^0.2.31",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.4.13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.19",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"velite": "0.1.0-beta.13"
}
}