-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.52 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "blog",
"version": "2.0.2",
"description": "blog.s2n.tech",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"start": "next start",
"gen": "run-s gen:*",
"gen:clone": "git clone https://github.com/shun-shobon/articles.git articles",
"gen:data": "tsx scripts/generate.ts",
"build": "pnpm run gen && run-s build:*",
"build:next": "next build --no-lint",
"dev": "next dev",
"clean": "rimraf .next articles data public/articles public/sitemap*.xml public/robots.txt",
"lint": "run-s -c lint:*",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint './src/**/*.css'",
"lint:prettier": "prettier --check './*.config.js' './src/**/*.{js,ts,jsx,tsx,css}'",
"lint:tsc": "tsc --noEmit",
"lint-fix": "run-s -c lint-fix:*",
"lint-fix:eslint": "pnpm run lint:eslint --fix",
"lint-fix:stylelint": "pnpm run lint:stylelint --fix",
"lint-fix:prettier": "prettier --write './*.config.js' './src/**/*.{js,ts,jsx,tsx,css}'",
"test": "vitest",
"test:gen": "tsx scripts/generate-test.ts",
"test:coverage": "vitest run --coverage",
"prepare": "husky install"
},
"dependencies": {
"@vercel/analytics": "^1.3.1",
"@vercel/og": "^0.6.3",
"classnames": "^2.5.1",
"fast-glob": "^3.3.2",
"feed": "^4.2.2",
"github-slugger": "^2.0.0",
"katex": "^0.16.11",
"mdast-util-compact": "^4.1.1",
"mdast-util-to-string": "^3.2.0",
"next": "^14.2.15",
"node-html-parser": "^6.1.13",
"nprogress": "^0.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-syntax-highlighter": "^15.6.1",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-parse": "^10.0.2",
"sharp": "^0.33.5",
"temporal-polyfill": "^0.2.5",
"the-new-css-reset": "^1.11.3",
"ts-array-length": "^0.1.3",
"tsx": "^4.19.1",
"twemoji-parser": "^14.0.0",
"unified": "^10.1.2",
"unist-util-remove-position": "^4.0.2",
"unist-util-visit": "^4.1.2",
"yaml": "^2.6.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@next/bundle-analyzer": "~14.2.15",
"@next/env": "~14.2.15",
"@shun-shobon/eslint-config-base": "^1.0.14",
"@shun-shobon/eslint-config-next": "^1.0.9",
"@shun-shobon/eslint-config-react": "^1.0.4",
"@shun-shobon/eslint-config-utils": "^1.0.1",
"@testing-library/dom": "^9.3.4",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@tsconfig/strictest": "^2.0.5",
"@types/katex": "^0.16.7",
"@types/mdast": "^3.0.15",
"@types/node": "^18.19.58",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/sharp": "^0.32.0",
"@types/twemoji-parser": "^13.1.4",
"@types/unist": "^2.0.11",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"cssnano": "^6.1.2",
"endent": "^2.1.0",
"eslint": "^8.57.1",
"husky": "^8.0.3",
"jsdom": "^24.1.3",
"lint-staged": "^15.2.10",
"mdast-util-math": "^2.0.2",
"npm-run-all2": "^6.2.6",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"schema-dts": "^1.1.2",
"stylelint": "^16.10.0",
"stylelint-config-recess-order": "^4.6.0",
"stylelint-config-recommended": "^14.0.1",
"typescript": "^5.6.3",
"unist-builder": "^3.0.1",
"vite": "^5.4.9",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}