-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
77 lines (77 loc) · 2.4 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run lint && npm run mdx:timestamps && next build",
"start": "next start",
"postbuild": "next-sitemap",
"mdx:timestamps": "node ./scripts/update-mdx-timestamps",
"lint:style": "npx stylelint \"**/*.css\" --fix",
"lint:biome": "npx biome check --fix --unsafe .",
"lint:prettier": "npx prettier . --write --log-level warn",
"lint": "npm run lint:style && npm run lint:prettier && npm run lint:biome"
},
"dependencies": {
"@mdx-js/loader": "^3.0.1",
"@mdx-js/mdx": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.15",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@rehype-pretty/transformers": "^0.13.2",
"@types/mdx": "^2.0.13",
"@vercel/edge": "^1.1.2",
"@vercel/functions": "^1.4.2",
"clsx": "^2.1.1",
"create-stylelint": "^0.5.0",
"framer-motion": "^11.11.9",
"fs": "^0.0.2",
"gray-matter": "^4.0.3",
"highlight.js": "^11.10.0",
"lucide": "^0.452.0",
"lucide-react": "^0.452.0",
"next": "14.2.15",
"next-mdx-remote": "^5.0.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.3.0",
"next-view-transitions": "^0.3.2",
"path": "^0.12.7",
"postcss-nested": "^6.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reading-time-estimator": "^1.11.0",
"rehype-highlight": "^7.0.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-rehype": "^11.1.1",
"remark-toc": "^9.0.0",
"shiki": "^1.22.0",
"tailwind-highlightjs": "^2.0.1",
"tailwind-merge": "^2.5.4",
"unified": "^11.0.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@tailwindcss/typography": "^0.5.15",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.7.6",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"eslint": "^9.12.0",
"eslint-config-next": "14.2.15",
"postcss": "^8.4.47",
"prettier": "3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
}
}