-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "nicklemmon-blog-next",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "npm run prep:images && next dev",
"build": "npm run prep:images && next build",
"lint": "npm eslint .",
"start": "next start",
"test:e2e": "cypress open",
"test:ci": "cypress run",
"prep:images": "node ./scripts/images.mjs"
},
"dependencies": {
"@vercel/analytics": "1.4.1",
"@vercel/og": "0.6.5",
"clsx": "2.1.1",
"framer-motion": "12.3.1",
"gray-matter": "4.0.3",
"next": "15.1.6",
"prism-theme-night-owl": "1.4.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-focus-lock": "2.13.5",
"react-icons": "5.4.0"
},
"devDependencies": {
"@mapbox/rehype-prism": "0.9.0",
"@next/eslint-plugin-next": "15.1.6",
"@testing-library/cypress": "10.0.3",
"@types/mapbox__rehype-prism": "0.8.3",
"@types/node": "22.13.0",
"@types/react": "19.0.8",
"cypress": "14.0.0",
"cypress-real-events": "1.14.0",
"del": "8.0.0",
"esbuild": "0.24.2",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"mdx-bundler": "10.0.3",
"mdx-prism": "0.3.4",
"prettier": "3.4.2",
"rehype": "13.0.2",
"sharp": "0.33.5",
"typescript": "5.7.3"
}
}