-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 2.15 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
{
"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 check:spelling && pnpm check:knip",
"check:knip": "knip",
"check:npm": "pnpm dlx npm-check-updates --deep --interactive --format group",
"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": "husky",
"start": "next start",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@tszhong0411/utils": "^0.0.15",
"geist": "^1.3.1",
"next": "14.2.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@cspell/dict-fullstack": "^3.2.0",
"@cspell/dict-npm": "^5.0.18",
"@cspell/dict-software-terms": "^4.0.10",
"@tszhong0411/eslint-config": "^0.1.11",
"@tszhong0411/prettier-config": "^0.0.7",
"@tszhong0411/tsconfig": "^0.0.6",
"@types/node": "22.5.0",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"autoprefixer": "^10.4.20",
"cspell": "^8.14.2",
"eslint": "8.57.0",
"husky": "^9.1.5",
"knip": "^5.27.3",
"lint-staged": "^15.2.9",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.10",
"typescript": "5.5.4"
},
"lint-staged": {
"*.{cjs,mjs,js,jsx,cts,mts,ts,tsx,json}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"packageManager": "pnpm@9.8.0"
}