-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 2 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
{
"private": true,
"name": "zsh-web",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"build": "next build",
"check": "pnpm lint && pnpm type-check && pnpm format:check && pnpm 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": {
"@zenfs/core": "^1.0.0",
"@zenfs/dom": "^1.0.0",
"arg": "^5.0.2",
"dayjs": "^1.11.13",
"next": "14.2.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uid": "^2.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@cspell/dict-fullstack": "^3.2.0",
"@cspell/dict-npm": "^5.1.4",
"@cspell/dict-software-terms": "^4.1.3",
"@tszhong0411/eslint-config": "^0.1.11",
"@tszhong0411/prettier-config": "^0.0.7",
"@tszhong0411/tsconfig": "^0.0.6",
"@tszhong0411/utils": "^0.0.15",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"cspell": "^8.14.2",
"eslint": "^8.57.0",
"husky": "^9.1.5",
"knip": "^5.30.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.45",
"postcss-lightningcss": "^1.0.1",
"postcss-load-config": "^6.0.1",
"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"
}
}