-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
91 lines (91 loc) · 2.32 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "me",
"version": "1.0.0",
"description": "My personal website",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "remix vite:dev",
"build": "remix vite:build",
"lint": "prettier **/*.{js,ts,jsx,tsx} --write",
"prettier": "prettier --single-quote --write",
"postinstall": "prisma generate",
"test": "npm run lint",
"typecheck": "tsc"
},
"prettier": {
"singleQuote": true,
"proseWrap": "never"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericcecchi/me.git"
},
"keywords": [],
"author": "Eric Cecchi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericcecchi/me/issues"
},
"homepage": "https://github.com/ericcecchi/me#readme",
"dependencies": {
"@mdx-js/react": "^3.0.1",
"@prisma/client": "^6.3.1",
"@radix-ui/react-icons": "^1.3.0",
"@remix-run/node": "^2.13.1",
"@remix-run/react": "^2.13.1",
"@remix-run/serve": "^2.13.1",
"@vercel/analytics": "^1.3.2",
"@vercel/remix": "^2.13.1",
"@vercel/speed-insights": "^1.0.12",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"gray-matter": "^4.0.3",
"isbot": "^4.4.0",
"mermaid": "^11.3.0",
"next-mdx-remote": "^5.0.0",
"playwright": "^1.48.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.1",
"remark-capitalize": "^1.1.0",
"remark-code-titles": "^0.1.2",
"remark-gfm": "^4.0.0",
"remark-smartypants": "^2.0.0",
"tailwind-merge": "^2.5.4",
"vite-tsconfig-paths": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@mdx-js/rollup": "^3.1.0",
"@remix-run/dev": "^2.13.1",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"autoprefixer": "^10.4.20",
"eslint": "^9.12.0",
"eslint-plugin-react": "^7.37.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prisma": "^6.3.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"vite": "^5.4.10"
}
}