-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.39 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
{
"name": "site",
"version": "0.0.0-development",
"description": "My personal potfolio website. Built with Next.js, Tailwind CSS, and TypeScript.",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint:check": "biome check .",
"lint": "biome check . --write",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,**/*.tsx,**/*.ts}\"",
"type:check": "tsc --noEmit",
"prepare": "husky",
"cz": "cz",
"deploy": "node --no-warnings ./scripts/deploy.js"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.3",
"@radix-ui/react-icons": "1.3.2",
"@radix-ui/react-slot": "^1.1.0",
"@vercel/edge-config": "^1.4.0",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"next": "^15.1.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-intersection-observer": "9.13.1",
"react-social-icons": "6.18.0",
"react-tweet": "^3.2.1",
"rsc-activity-calendar": "^1.0.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@content-collections/core": "^0.7.3",
"@content-collections/mdx": "^0.2.0",
"@content-collections/next": "^0.2.4",
"@openstatus/react": "^0.0.3",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/github": "^10.3.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"cspell": "8.16.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "16.4.5",
"husky": "9.1.7",
"next-themes": "^0.4.4",
"postcss": "^8",
"reading-time-estimator": "^1.11.0",
"semantic-release": "^24.2.0",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"winston": "3.17.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"overrides": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2"
},
"optionalDependencies": {
"@parcel/watcher-linux-x64-glibc": "^2.5.0"
}
}