-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.85 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
{
"name": "tailwind-nextjs-starter-blog",
"version": "2.0.0",
"private": true,
"scripts": {
"analyze": "cross-env ANALYZE=true next build",
"build": "cross-env INIT_CWD=$PWD next build && cross-env NODE_OPTIONS='--experimental-json-modules' node ./scripts/postbuild.mjs",
"dev": "cross-env INIT_CWD=$PWD next dev",
"lint": "next lint --fix --dir pages --dir app --dir components --dir lib --dir layouts --dir scripts",
"serve": "next start",
"start": "next dev"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
},
"resolutions": {
"@opentelemetry/api": "1.4.1",
"@opentelemetry/core": "1.13.0",
"@opentelemetry/exporter-trace-otlp-grpc": "0.39.1",
"@opentelemetry/resources": "1.13.0",
"@opentelemetry/sdk-trace-base": "1.13.0",
"@opentelemetry/sdk-trace-node": "1.13.0",
"@opentelemetry/semantic-conventions": "1.13.0"
},
"dependencies": {
"@contentlayer/core": "^0.3.4",
"@hookform/resolvers": "^3.9.1",
"@mdx-js/loader": "^3.1.0",
"@next/bundle-analyzer": "13.5.4",
"@next/mdx": "^14.2.17",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.20",
"axios": "^1.7.7",
"contentlayer": "0.3.4",
"dotenv": "^16.4.5",
"esbuild": "0.18.0",
"github-slugger": "^1.5.0",
"gray-matter": "^4.0.3",
"isomorphic-fetch": "^3.0.0",
"markdown-wasm": "^1.2.0",
"next": "13.5.4",
"next-contentlayer": "0.3.4",
"next-themes": "^0.2.1",
"pliny": "0.1.2",
"postcss": "^8.4.48",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.53.2",
"reading-time": "1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-citation": "^2.2.2",
"rehype-katex": "^6.0.3",
"rehype-preset-minify": "7.0.0",
"rehype-prism-plus": "^1.6.3",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"tailwindcss": "^3.4.14",
"unist-util-visit": "^5.0.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/mdx": "^2.0.13",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"remark": "^15.0.1",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}