-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
73 lines (73 loc) · 2.25 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
{
"private": true,
"name": "links",
"version": "0.0.0",
"description": "tszhong0411's social media links",
"license": "MIT",
"author": "tszhong0411 <me@honghong.me> (https://github.com/tszhong0411/)",
"repository": {
"type": "git",
"url": "git+https://github.com/tszhong0411/links.git"
},
"type": "module",
"scripts": {
"build": "next build",
"check": "pnpm lint && pnpm type-check && pnpm format:check && pnpm check:spelling && pnpm check:knip",
"check:knip": "knip",
"check:spelling": "cspell --show-context --show-suggestions",
"clean": "rm -rf .next",
"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": {
"@tszhong0411/utils": "^0.0.22",
"geist": "^1.3.1",
"next": "15.2.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@tszhong0411/eslint-config": "^0.1.36",
"@tszhong0411/prettier-config": "^0.0.15",
"@tszhong0411/tsconfig": "^0.0.13",
"@types/node": "22.14.0",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.1",
"cspell": "^8.18.1",
"cz-git": "^1.11.1",
"eslint": "9.23.0",
"knip": "^5.46.5",
"lint-staged": "^15.5.0",
"postcss": "^8.5.3",
"postcss-lightningcss": "^1.0.1",
"postcss-load-config": "^6.0.1",
"prettier": "^3.5.3",
"simple-git-hooks": "^2.12.1",
"tailwindcss": "^3.4.17",
"typescript": "5.8.2"
},
"lint-staged": {
"*.{cjs,mjs,js,jsx,cts,mts,ts,tsx,json}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"packageManager": "pnpm@10.7.1",
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit $1"
}
}