-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.6 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.6 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
{
"name": "blog",
"description": "Simple starter for Gatsby",
"version": "1.9.119",
"author": "Futoshi Iwashita <jaxx2104@gmail.com>",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.7.2",
"@fortawesome/free-brands-svg-icons": "6.7.2",
"@fortawesome/react-fontawesome": "0.2.6",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^15.5.3",
"date-fns": "^4.1.0",
"font-awesome": "4.7.0",
"gray-matter": "^4.0.3",
"hast-util-from-html": "^2.0.3",
"localforage": "1.10.0",
"modern-normalize": "3.0.1",
"next": "^15.5.3",
"open-graph-scraper": "^6.11.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"react-lazyload": "3.2.1",
"react-share": "5.2.2",
"rehype-pretty-code": "^0.14.1",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"shiki": "^3.13.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.27.0",
"@types/hast": "^3.0.4",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-helmet": "6.1.11",
"@types/styled-components": "5.1.34",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"babel-plugin-styled-components": "2.1.4",
"eslint": "8.57.1",
"eslint-config-next": "^15.5.3",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.2.0",
"prettier": "2.8.8",
"sharp": "^0.34.4",
"styled-components": "6.1.16",
"textlint": "15.5.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-no-mix-dearu-desumasu": "^6.0.4",
"textlint-rule-preset-ai-writing": "1.1.0",
"textlint-rule-preset-ja-spacing": "2.4.3",
"textlint-rule-preset-japanese": "5.0.0",
"typescript": "5.8.2"
},
"keywords": [
"blog",
"nextjs",
"typescript"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"deploy": "pnpm build",
"format": "prettier --write \"**/*.+(ts|tsx|json|md)\" --ignore-path .gitignore",
"lint:text": "textlint content/**/index.md",
"lint:textfix": "textlint --fix content/**/index.md",
"lint": "eslint --fix --ext .ts,.tsx --ignore-path .gitignore app components lib styles types",
"test": "tsc -p ./tsconfig.json"
},
"packageManager": "pnpm@9.15.9"
}