This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.04 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
{
"private": true,
"name": "todo",
"version": "0.0.0",
"description": "A simple todo app",
"license": "MIT",
"author": "Lai Tsz Hong <me@honghong.me> (https://github.com/tszhong0411/)",
"repository": {
"type": "git",
"url": "git+https://github.com/tszhong0411/todo.git"
},
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier -w .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install",
"start": "next start",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"firebase": "^10.2.0",
"lucide-react": "^0.268.0",
"next": "13.4.19",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-firebase-hooks": "^5.1.1",
"react-hot-toast": "^2.4.1",
"sharp": "^0.32.5",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@tszhong0411/eslint-config": "^1.0.23",
"@tszhong0411/prettier-config": "^1.0.7",
"@tszhong0411/tsconfig": "^1.0.3",
"@types/node": "^20.5.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.2",
"autoprefixer": "^10.4.15",
"eslint": "^8.47.0",
"eslint-config-next": "13.4.19",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"postcss": "^8.4.28",
"prettier": "^3.0.2",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6"
},
"eslintConfig": {
"extends": [
"next/core-web-vitals",
"@tszhong0411/eslint-config"
],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": "latest"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint"
],
"*.{json,css,scss,md,mdx,js,jsx,ts,tsx,cjs,mjs}": [
"prettier -c"
]
},
"prettier": "@tszhong0411/prettier-config"
}