-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.17 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
{
"name": "mitsublog",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "simple-git-hooks",
"lint": "eslint .",
"format": "prettier -w .",
"typecheck": "tsc --noEmit",
"prebuild": "tsx prebuild.ts",
"build": "next build",
"start": "next start",
"dev": "yarn prebuild && next dev",
"dev:types": "tsc --noEmit --watch"
},
"simple-git-hooks": {
"pre-commit": "yarn nano-staged"
},
"nano-staged": {
"**/*.{js,jsx,mjs,cjs,ts,tsx}": [
"eslint",
"prettier -w"
],
"**/*.{css,json,md,yml}": [
"prettier -w"
]
},
"browserslist": [
"last 2 versions",
">1%",
"not dead"
],
"dependencies": {
"@csstools/postcss-global-data": "^2.0.1",
"@foxkit/node-util": "^0.4.1",
"@foxkit/util": "^0.6.2",
"@types/node": "^18.15.11",
"@types/react": "^18.2.17",
"classcat": "^5.0.4",
"globby": "^13.2.2",
"iconoir": "^6.10.0",
"modern-diacritics": "^2.3.0",
"next": "13.5.4",
"postcss": "^8.4.31",
"postcss-preset-env": "^9.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"rehype": "^12.0.1",
"rehype-external-links": "^2.1.0",
"rehype-preset-minify": "^6.0.0",
"rehype-react": "^7.2.0",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.3",
"remark-breaks": "^3.0.3",
"remark-extract-frontmatter": "^3.2.0",
"remark-frontmatter": "^4.0.1",
"remark-gemoji": "^7.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.2",
"remark-prism": "^1.3.6",
"remark-rehype": "^10.1.0",
"remark-twemoji": "^0.1.1",
"remark-unwrap-images": "^3.0.1",
"spacetime": "^7.4.7",
"tsx": "^3.12.7",
"twemoji": "^14.0.2",
"typescript": "^5.1.6",
"unified": "^10.1.2",
"yaml": "^2.3.1",
"zod": "^3.22.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"confusing-browser-globals": "^1.0.11",
"eslint": "^8.46.0",
"eslint-config-foxkit": "^2.1.1",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "^8.9.0",
"nano-staged": "^0.8.0",
"prettier": "^3.0.0",
"simple-git-hooks": "^2.9.0"
}
}