-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.79 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.79 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "allthingslinux",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=22.14.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "next dev",
"turbo": "next dev --turbo",
"dev:wrangler": "wrangler dev --config wrangler.local.jsonc",
"trigger:dev": "node scripts/trigger-dev.mjs dev",
"dev:all": "concurrently \"pnpm:dev\" \"pnpm:dev:wrangler\" \"pnpm:trigger:dev\"",
"build:coc": "node scripts/generate-code-of-conduct.mjs",
"build:content": "contentlayer2 build",
"build:next": "next build",
"build:opennext": "pnpm exec opennextjs-cloudflare build",
"build": "next build",
"build:fast": "SKIP_ENV_VALIDATION=true next build",
"deploy:opennext:dev": "pnpm exec opennextjs-cloudflare deploy -- --config wrangler.dev.jsonc --env development",
"deploy:opennext:prod": "pnpm exec opennextjs-cloudflare deploy -- --config wrangler.production.jsonc --env production",
"deploy:dev": "pnpm run build && pnpm run build:opennext && pnpm run deploy:opennext:dev",
"deploy:prod": "pnpm run build:fast && pnpm run build:opennext && pnpm run deploy:opennext:prod",
"deploy:prod:full": "pnpm run build && pnpm run build:opennext && pnpm run deploy:opennext:prod",
"deploy": "pnpm run deploy:prod",
"preview:built": "pnpm run build && pnpm exec opennextjs-cloudflare preview -- --config wrangler.local.jsonc",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"check": "pnpm run check:ts && pnpm run check:format && pnpm run check:mdx",
"check:format": "prettier --check .",
"check:mdx": "remark content/blog/*.mdx --quiet",
"check:ts": "tsc --noEmit",
"populate-cache:local": "pnpm exec opennextjs-cloudflare populateCache local",
"populate-cache:remote": "pnpm exec opennextjs-cloudflare populateCache remote",
"cf-typegen": "wrangler types --config wrangler.local.jsonc --env-interface CloudflareEnv cloudflare-env.d.ts",
"secrets:dev": "bash scripts/secrets.sh development",
"secrets:prod": "bash scripts/secrets.sh production",
"trigger:deploy": "node scripts/trigger-dev.mjs deploy"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@hookform/resolvers": "3.9.1",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@mondaydotcomorg/api": "^11.0.0",
"@next/mdx": "^15.5.2",
"@next/third-parties": "^15.5.2",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@stepperize/react": "^5.1.6",
"@t3-oss/env-nextjs": "^0.13.8",
"@tabler/icons-react": "^3.34.1",
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/typography": "^0.5.16",
"@trigger.dev/sdk": "4.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"contentlayer2": "^0.5.8",
"date-fns": "^4.1.0",
"embla-carousel-auto-scroll": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"feed": "^5.1.0",
"globals": "^16.3.0",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"lucide-react": "^0.542.0",
"marked": "^16.2.1",
"next": "^15.5.2",
"next-contentlayer2": "^0.5.8",
"postcss": "^8.5.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.2",
"zod": "^4.1.9"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250903.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@opennextjs/aws": "^3.7.6",
"@opennextjs/cloudflare": "^1.7.1",
"@svgr/webpack": "^8.1.0",
"@trigger.dev/build": "4.0.2",
"@types/eslint": "^9.6.1",
"@types/marked": "^6.0.0",
"@types/mdx": "^2.0.13",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"concurrently": "^9.2.1",
"eslint-config-next": "^15.5.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-mdx": "^3.6.2",
"eslint-plugin-prettier": "^5.5.4",
"prettier-eslint": "^16.4.2",
"remark-cli": "^12.0.1",
"tailwindcss": "^4.1.12",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.42.0",
"wrangler": "^4.33.2"
}
}