-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.72 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.72 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
{
"name": "",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"start": "npm run dev",
"typecheck": "react-router typegen && tsc",
"prepare": "husky",
"postinstall": "patch-package",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"publish": "bash scripts/publish.sh",
"deploy": "bash scripts/deploy.sh",
"sync-notion": "tsx -r tsconfig-paths/register --env-file=.env scripts/sync-notion.ts",
"sync-notion:ci": "tsx -r tsconfig-paths/register scripts/sync-notion.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "netlify dev:exec drizzle-kit migrate",
"db:studio": "netlify dev:exec drizzle-kit studio"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1024.0",
"@mdx-js/react": "^3.1.1",
"@netlify/neon": "^0.1.0",
"@notionhq/client": "^5.4.0",
"@react-router/node": "^7.11.0",
"@tailwindcss/typography": "^0.5.19",
"better-auth": "^1.5.6",
"cheerio": "^1.2.0",
"drizzle-orm": "^0.45.1",
"isbot": "^5.1.27",
"lucide-react": "^0.556.0",
"mermaid": "^11.14.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router": "^7.12.0",
"react-router-mdx": "^1.0.8",
"rehype-pretty-code": "^0.14.1",
"remark-gfm": "^4.0.1",
"remix-themes": "^2.0.4",
"shiki": "^3.20.0"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@netlify/vite-plugin": "^2.11.2",
"@netlify/vite-plugin-react-router": "^2.1.3",
"@react-router/dev": "^7.12.0",
"@types/node": "^20.17.32",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"autoprefixer": "^10.4.21",
"drizzle-kit": "^0.31.8",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"patch-package": "^8.0.1",
"postcss": "^8.5.3",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.17",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"vite": "^6.3.3",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"overrides": {
"tar": ">=7.5.4",
"lodash": "4.18.1",
"lodash-es": "4.18.1"
}
}