-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.74 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
100
101
102
103
104
105
{
"name": "devxian96.github.io",
"description": "Seokhyun Jang's Portfolio website",
"version": "0.3.0",
"private": true,
"license": "MIT",
"homepage": "https://devxian96.github.io",
"repository": {
"type": "git",
"url": "https://github.com/devxian96/devxian96.github.io.git"
},
"author": {
"name": "devxian96",
"email": "coolman555@me.com"
},
"type": "module",
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"eslint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier --write .",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"preinstall": "npx only-allow pnpm",
"prepare": "node .husky/install.mjs"
},
"dependencies": {
"@tailwindcss/postcss": "^4.3.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"lucide-react": "^1.31.0",
"marked": "^18.0.9",
"next": "16.3.1",
"postcss": "^8.5.26",
"radix-ui": "^1.6.7",
"react": "19.2.8",
"react-dom": "19.2.8",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"ts-pattern": "^5.9.0",
"zustand": "^5.0.15"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@eslint/compat": "^2.1.0",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^9.39.5",
"@next/eslint-plugin-next": "^16.3.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.20",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"eslint": "^9.39.5",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-next": "^16.3.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-better-tailwindcss": "^4.7.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6",
"shadcn": "^4.18.0",
"typescript": "6.0.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"bash -c 'pnpm prettier'",
"bash -c 'pnpm lint'",
"bash -c 'pnpm type-check'"
],
"*.css": [
"bash -c 'pnpm prettier'"
],
"*.{json,md}": [
"bash -c 'pnpm prettier'"
]
},
"packageManager": "pnpm@10.12.2+sha512.a32540185b964ee30bb4e979e405adc6af59226b438ee4cc19f9e8773667a66d302f5bfee60a39d3cac69e35e4b96e708a71dd002b7e9359c4112a1722ac323f",
"engines": {
"node": ">=22.14.0"
},
"volta": {
"node": "22.14.0",
"pnpm": "10.11.1"
},
"browserslist": [
"chrome >= 93",
"firefox >= 92",
"safari >= 15.4",
"edge >= 93",
"not dead"
]
}