-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
{
"name": "masonmcelvain",
"version": "2.0.0",
"license": "MIT",
"description": "Portfolio site for Mason McElvain",
"author": "Mason",
"repository": {
"type": "git",
"url": "https://github.com/masonmcelvain/masonmcelvain"
},
"packageManager": "[email protected]",
"engines": {
"node": "22.13.1"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix .",
"format": "prettier --write .",
"prepare": "husky",
"typecheck": "tsc --pretty"
},
"dependencies": {
"@headlessui/react": "2.2.0",
"@heroicons/react": "2.2.0",
"@mdx-js/loader": "3.1.0",
"@mdx-js/react": "3.1.0",
"@next/mdx": "15.1.6",
"csvtojson": "2.0.10",
"he": "1.2.0",
"next": "15.1.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "5.4.0",
"zod": "3.24.1"
},
"peerDependencies": {
"@mdx-js/react": "3.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.19.0",
"@tailwindcss/typography": "0.5.16",
"@types/he": "1.2.3",
"@types/mdx": "2.0.13",
"@types/node": "22.10.10",
"@types/react": "19.0.8",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"autoprefixer": "10.4.20",
"eslint": "9.19.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"postcss": "8.5.1",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "3.4.17",
"typescript": "5.7.3"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}