-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 2.57 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
{
"name": "yceffort-blog",
"version": "1.0.0",
"description": "yceffort-blog",
"keywords": [
"react",
"nextjs",
"blog"
],
"repository": "https://github.com/yceffort/yceffort-blog-v2",
"license": "MIT",
"author": "yceffort <[email protected]>",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "eslint '**/*.{ts,tsx}' && prettier '**/*.{ts,tsx}'",
"lint:fix": "eslint '**/*.{ts,tsx}' --fix && prettier '**/*.{ts,tsx}' --write",
"lint:style": "stylelint './**/*.{js,ts,tsx}'",
"lint:style:fix": "stylelint './**/*.{js,ts,tsx}' --fix",
"pre-commit": "lint-staged",
"prepare": "husky install",
"prettier": "prettier '**/*.{json,md,yaml}' --check",
"prettier:fix": "prettier '**/*.{json,md,yaml}' --write",
"start": "next start"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@vercel/analytics": "^1.0.1",
"date-fns": "^2.30.0",
"front-matter": "^4.0.2",
"glob": "^8.1.0",
"image-size": "^1.0.2",
"next": "^14.0.0",
"next-mdx-remote": "^4.4.1",
"next-pwa": "^5.6.0",
"next-themes": "^0.2.1",
"prismjs": "^1.29.0",
"query-string": "^7.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-katex": "^6.0.3",
"rehype-prism-plus": "^1.5.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-prism": "^1.3.6",
"remark-slug": "^7.0.1",
"remark-toc": "^8.0.1",
"sharp": "^0.30.7",
"tailwindcss": "^3.3.2",
"unist-util-visit": "^4.1.2",
"vfile": "^5.3.7"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@titicaca/eslint-config-triple": "^5.0.0",
"@titicaca/prettier-config-triple": "^1.0.2",
"@titicaca/stylelint-config-triple": "^1.1.0",
"@types/glob": "^7.2.0",
"@types/gtag.js": "^0.0.10",
"@types/node": "^18.16.16",
"@types/react": "^18.2.7",
"@types/unist": "^2.0.6",
"autoprefixer": "^10.4.14",
"eslint": "^8.41.0",
"eslint-config-next": "^13.4.4",
"eslint-plugin-n": "^16.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"next-remote-watch": "^2.0.0",
"postcss": "^8.4.23",
"postcss-syntax": "^0.36.2",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.1.13",
"stylelint": "^15.6.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"unified": "^10.1.2",
"webpack": "^5.84.1"
},
"packageManager": "[email protected]"
}