-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
91 lines (91 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
90
91
{
"name": "sreetamdas.com",
"version": "4.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev:content": "velite --config './.config/velite.config.ts' --watch",
"dev:next": "next dev -p 5045",
"build:content": "velite --config './.config/velite.config.ts' --clean",
"build:next": "next build",
"analyze": "ANALYZE=true next build",
"dev": "pnpm run dev:next",
"build": "pnpm run build:next",
"start": "next start",
"postbuild": "next-sitemap --config ./.config/next-sitemap.config.cjs",
"export": "next build && next export",
"compile": "tsc --watch",
"typecheck": "tsc -p tsconfig.json",
"eslint:check": "eslint --config ./.config/eslint.config.mjs ./src",
"eslint:fix": "eslint --config ./.config/eslint.config.mjs --fix ./src",
"prettier:check": "prettier --config ./.config/prettier.config.mjs --ignore-path ./.config/.prettierignore --check ./src",
"prettier:write": "prettier --config ./.config/prettier.config.mjs --ignore-path ./.config/.prettierignore --write ./src",
"lint": "pnpm run prettier:check && pnpm run eslint:check",
"lint:fix": "pnpm run prettier:write && pnpm run eslint:fix",
"format": "pnpm run prettier:write ."
},
"dependencies": {
"@mdx-js/mdx": "^3.0.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-visually-hidden": "^1.1.0",
"@sreetamdas/karma": "^3.1.1",
"@supabase/sentry-js-integration": "^0.3.0",
"@supabase/supabase-js": "^2.45.4",
"clsx": "^2.1.1",
"image-size": "^1.1.1",
"lodash-es": "^4.17.21",
"next": "15.0.0-canary.177",
"next-plausible": "^3.12.2",
"react": "19.0.0-rc.0",
"react-dom": "19.0.0-rc.0",
"react-icons": "^5.3.0",
"react-wrap-balancer": "^1.1.1",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-toc": "^9.0.0",
"shiki-magic-move": "^0.4.5",
"type-fest": "^4.26.1",
"unist-util-visit": "^5.0.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@notionhq/client": "^2.2.15",
"@octokit/types": "^13.6.1",
"@types/eslint": "~9.6.1",
"@types/lodash-es": "^4.17.12",
"@types/mdx": "^2.0.13",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.11.1",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.10.0",
"next-sitemap": "^4.2.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"shiki": "^1.21.0",
"tailwind-merge": "^2.5.3",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"velite": "^0.1.1"
},
"browser": {
"fs": false
},
"msw": {
"workerDirectory": "public"
},
"engines": {
"node": "20"
}
}