-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
92 lines (92 loc) · 3.36 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
{
"name": "personal",
"version": "0.1.0",
"private": true,
"scripts": {
"//start": "starts Next.js in development mode",
"dev": "next dev",
"dev:debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"//prod": "starts Next.js in production server.. restart again after code change",
"start": "next build && next start",
"dev:vercel": "vercel dev",
"deploy:preview": "vercel",
"check-updates": "ncu -i --format repo,group",
"//": "//-internal commands-//",
"//dont use NODE_ENV": "https://github.com/vercel/next.js/blob/master/errors/non-standard-node-env.md",
"deploy:old": "pnpm run tsc && dotenv -e .env.prod pnpm run export && firebase deploy -P prod --only hosting",
"build": "next build --debug",
"sitemap": "node ./scripts/generate-sitemap.mjs",
"feed": "node ./scripts/generate-rss.mjs",
"postbuild": "pnpm run sitemap && pnpm run feed",
"export": "next build && next export",
"deploy-lint": "pnpm run lint && pnpm run tsc && pnpm run export && firebase deploy --only hosting",
"tsc": "tsc",
"lint": "eslint **/*.{ts,tsx} -c .eslintrc.js",
"lint-next": "next lint",
"stylelint": "npx stylelint '**/*.{css,scss,sass}'",
"//lint-fix": "eslint ./components/** ./pages/** -c .eslintrc.json --fix --ext .js,.jsx,.ts,.tsx,.scss,.mdx"
},
"dependencies": {
"@jsdevtools/rehype-toc": "^3.0.2",
"esbuild": "0.24.0",
"googleapis": "^144.0.0",
"gray-matter": "^4.0.3",
"hastscript": "^9.0.0",
"mdx-bundler": "^10.0.3",
"next": "^14.2.15",
"notion-to-md": "^3.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dom-confetti": "^0.2.0",
"react-medium-image-zoom": "^5.2.10",
"react-twitter-widgets": "^1.11.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-code-titles": "^1.2.0",
"rehype-prism-plus": "^2.0.0",
"rehype-slug": "^6.0.0",
"remark-code-titles": "^0.1.2",
"remark-gfm": "^4.0.0",
"remark-mdx-images": "^2.0.0",
"remark-prism": "^1.3.6",
"sass": "^1.80.1",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.15",
"@notionhq/client": "^2.2.15",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.7.6",
"@types/react": "^18.3.11",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "^14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-hooks-unreliable-deps": "^1.0.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-valtio": "^0.6.4",
"feed": "^4.2.2",
"globby": "^14.0.2",
"postcss": "^8.4.47",
"prettier-plugin-tailwindcss": "^0.6.8",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-scss": "^6.8.0",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"zod": "^3.23.8"
}
}