This repository was archived by the owner on Mar 24, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.31 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.31 KB
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
{
"name": "allthingslinux",
"version": "0.1.0",
"private": true,
"browser": {
"fs": false,
"os": false,
"path": false
},
"scripts": {
"dev": "next dev --turbo",
"turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.mdx",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check:mdx": "remark content/blog/*.mdx --quiet",
"check:ts": "tsc --noEmit",
"pages:build": "npx @cloudflare/next-on-pages",
"preview": "npm run pages:build && wrangler pages dev",
"deploy": "npm run pages:build && wrangler pages deploy",
"build:content": "contentlayer2 build"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.3.1",
"@hookform/resolvers": "^4.1.3",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@mondaydotcomorg/api": "^9.0.1",
"@next/mdx": "^15.2.2",
"@next/third-parties": "^15.2.2",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-navigation-menu": "^1.2.5",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@stepperize/react": "^5.1.5",
"@tabler/icons-react": "^3.31.0",
"@tailwindcss/postcss": "^4.0.14",
"@tailwindcss/typography": "^0.5.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"contentlayer2": "^0.5.4",
"date-fns": "^4.1.0",
"embla-carousel-auto-scroll": "^8.5.2",
"embla-carousel-react": "^8.5.2",
"framer-motion": "^12.5.0",
"github-markdown-css": "^5.8.1",
"globals": "^16.0.0",
"lucide-react": "^0.479.0",
"motion": "^12.5.0",
"next": "^15.2.2",
"next-contentlayer2": "^0.5.4",
"path-browserify": "^1.0.1",
"postcss": "^8.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-github": "^12.0.0",
"remark-github-blockquote-alert": "^1.3.0",
"remark-mdx-frontmatter": "^5.0.0",
"shiki": "^1.29.2",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.14",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.10",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@svgr/webpack": "^8.1.0",
"@types/eslint": "^9.6.1",
"@types/mdx": "^2.0.13",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint-config-next": "^15.2.2",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-mdx": "^3.2.0",
"eslint-plugin-prettier": "^5.2.3",
"prettier-eslint": "^16.3.0",
"remark-cli": "^12.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"wrangler": "^4.0.0"
}
}