-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·115 lines (115 loc) · 3.93 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"private": true,
"name": "one-blog",
"version": "0.0.0",
"description": "A simple blog made by tszhong0411",
"license": "MIT",
"author": "tszhong0411 <me@honghong.me> (https://github.com/tszhong0411/)",
"repository": {
"type": "git",
"url": "git+https://github.com/tszhong0411/one-blog.git"
},
"type": "module",
"scripts": {
"build": "next build",
"check": "pnpm lint && pnpm type-check && pnpm format:check && pnpm check:spelling && pnpm check:knip",
"check:knip": "dotenv -e .env.local -- knip",
"check:npm": "pnpm dlx npm-check-updates --deep --interactive --format group",
"check:spelling": "cspell --show-context --show-suggestions",
"clean": "rm -rf .next",
"db:check": "dotenv -e .env.local -- drizzle-kit check",
"db:generate": "dotenv -e .env.local -- drizzle-kit generate",
"db:migrate": "dotenv -e .env.local -- tsx ./src/db/migrate.ts",
"db:push": "dotenv -e .env.local -- drizzle-kit push",
"db:seed": "dotenv -e .env.local -- tsx ./src/db/seed.ts",
"db:studio": "dotenv -e .env.local -- drizzle-kit studio",
"dev": "next dev --turbo",
"format:check": "prettier --cache --check --ignore-path .gitignore --ignore-path .prettierignore .",
"format:write": "prettier --cache --write --list-different --ignore-path .gitignore --ignore-path .prettierignore .",
"preinstall": "npx only-allow pnpm",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint --fix .",
"prepare": "simple-git-hooks",
"start": "next start",
"type-check": "tsc --noEmit"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"dependencies": {
"@auth/drizzle-adapter": "1.7.2",
"@hookform/resolvers": "^3.10.0",
"@icons-pack/react-simple-icons": "^11.2.0",
"@paralleldrive/cuid2": "^2.2.2",
"@t3-oss/env-nextjs": "^0.12.0",
"@tiptap/extension-code-block-lowlight": "^2.11.5",
"@tiptap/extension-highlight": "^2.11.5",
"@tiptap/extension-link": "^2.11.5",
"@tiptap/extension-placeholder": "^2.11.5",
"@tiptap/extension-task-item": "^2.11.5",
"@tiptap/extension-task-list": "^2.11.5",
"@tiptap/pm": "^2.11.5",
"@tiptap/react": "^2.11.5",
"@tiptap/starter-kit": "^2.11.5",
"@tszhong0411/ui": "^0.0.53",
"@tszhong0411/utils": "^0.0.18",
"dayjs": "^1.11.13",
"drizzle-orm": "^0.39.1",
"geist": "^1.3.1",
"human-id": "^4.1.1",
"lowlight": "^3.3.0",
"lucide-react": "^0.474.0",
"next": "^15.1.6",
"next-auth": "5.0.0-beta.25",
"next-safe-action": "^7.10.2",
"next-themes": "^0.4.4",
"pg": "^8.13.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"reading-time": "^1.5.0",
"server-only": "^0.0.1",
"sharp": "^0.33.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@cspell/dict-fullstack": "^3.2.3",
"@cspell/dict-npm": "^5.1.24",
"@cspell/dict-software-terms": "^4.2.4",
"@tailwindcss/postcss": "^4.0.3",
"@tszhong0411/eslint-config": "^0.1.27",
"@tszhong0411/prettier-config": "^0.0.14",
"@tszhong0411/tsconfig": "^0.0.10",
"@types/node": "^22.13.0",
"@types/pg": "^8.11.11",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"cspell": "^8.17.3",
"cz-git": "^1.11.0",
"dotenv-cli": "^8.0.0",
"drizzle-kit": "^0.30.4",
"eslint": "^9.19.0",
"knip": "^5.43.6",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"postcss-load-config": "^6.0.1",
"prettier": "^3.4.2",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^4.0.3",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"lint-staged": {
"*.{cjs,mjs,js,jsx,cts,mts,ts,tsx,json}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"packageManager": "pnpm@9.15.4",
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit $1"
}
}