forked from sreetamdas/sreetamdas.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.81 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
92
93
94
95
96
97
98
{
"name": "sreetamdas.com",
"version": "3.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"start": "next start",
"turbo": "next dev --turbo --show-all",
"dev": "next dev",
"build": "next build",
"build:analyze": "contentlayer build & ANALYZE=true next build",
"postbuild": "next-sitemap --config next-sitemap.config.cjs",
"export": "contentlayer build & next build && next export",
"compile": "tsc --watch",
"typecheck": "tsc -p tsconfig.json",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --cache",
"lint:next": "next lint",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --cache --fix",
"prettier": "prettier 'src/**/*.{js,jsx,ts,tsx,mdx}' --write --cache"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@sentry/nextjs": "^7.93.0",
"@sreetamdas/karma": "3.1.1",
"@supabase/supabase-js": "^2.39.3",
"clsx": "^2.1.0",
"contentlayer": "^0.3.4",
"esbuild": "^0.19.11",
"framer-motion": "^10.18.0",
"image-size": "^1.1.1",
"lodash-es": "^4.17.21",
"mdx-bundler": "^10.0.1",
"micromark": "^4.0.0",
"next": "14.0.4",
"next-contentlayer": "^0.3.4",
"next-plausible": "^3.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-wrap-balancer": "^1.1.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "3.0.1",
"remark-toc": "^9.0.0",
"server-only": "^0.0.1",
"shiki": "^0.14.7",
"tailwind-merge": "^2.2.0",
"unist-util-visit": "^5.0.0",
"zustand": "4.4.7"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.4",
"@notionhq/client": "^2.2.14",
"@octokit/types": "^12.4.0",
"@types/eslint": "^8.56.2",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/lodash-es": "^4.17.12",
"@types/mdx": "^2.0.10",
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-mdx": "^3.1.4",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"markdown-wasm": "^1.2.0",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"shikiji": "^0.9.18",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3"
},
"browser": {
"fs": false
},
"msw": {
"workerDirectory": "public"
},
"engines": {
"node": "20"
}
}