-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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
{
"private": true,
"name": "friend-quiz",
"version": "0.0.0",
"description": "Friend quiz cheat tool",
"license": "MIT",
"author": "tszhong0411 <[email protected]> (https://github.com/tszhong0411/)",
"repository": {
"type": "git",
"url": "git+https://github.com/tszhong0411/friend-quiz.git"
},
"type": "module",
"scripts": {
"build": "next build",
"check-updates": "pnpm dlx npm-check-updates --interactive --format group",
"clean": "rm -rf .next",
"commit": "cz",
"dev": "next dev",
"format:check": "prettier -c .",
"format:write": "prettier -w .",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint --fix .",
"prepare": "husky install",
"start": "next start",
"type-check": "tsc --noEmit"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"dependencies": {
"@icons-pack/react-simple-icons": "^10.0.0",
"@tszhong0411/ui": "^0.0.25",
"@tszhong0411/utils": "^0.0.13",
"geist": "^1.3.1",
"lucide-react": "^0.428.0",
"next": "14.2.5",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@tszhong0411/eslint-config": "^0.1.8",
"@tszhong0411/prettier-config": "^0.0.5",
"@tszhong0411/tailwind-config": "^0.0.10",
"@tszhong0411/tsconfig": "^0.0.6",
"@types/node": "22.4.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"cz-git": "^1.9.4",
"eslint": "^8.57.0",
"husky": "9.1.4",
"lint-staged": "15.2.9",
"postcss": "^8.4.41",
"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"
}
}