-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.45 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.45 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
{
"name": "dev-leemj",
"private": true,
"homepage": "https://dev-leemj.github.io",
"scripts": {
"dev": "next dev -- --port 10443",
"build": "rimraf public/robots.txt public/sitemap*.xml && next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"deploy-gh-pages": "rm -rf node_modules/.cache && npm run build && next export && touch out/.nojekyll && git add -f out/ && git checkout -b temp-for-deploy-gh-pages && git commit -m \"Deploy Next.js to gh-pages\" && git subtree split --prefix out -b gh-pages && git push -f origin gh-pages:gh-pages && git branch -D gh-pages && git checkout master && git branch -D temp-for-deploy-gh-pages"
},
"dependencies": {
"autoprefixer": "^10.4.11",
"gray-matter": "^4.0.3",
"next": "^12.3.0",
"next-seo": "^5.5.0",
"postcss": "^8.4.16",
"react": "17.0.2",
"react-dom": "17.0.2",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^2.0.1",
"rehype-prism-plus": "^1.5.0",
"rehype-slug": "^5.0.1",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.2",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.7",
"@types/node": "18.7.18",
"@types/react": "17.0.18",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"next-sitemap": "^3.1.22",
"typescript": "4.3.5"
}
}