-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
{
"name": "react-tailwindcss-datepicker-doc",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "^1.7.4",
"@heroicons/react": "^2.0.13",
"@vercel/analytics": "^1.3.1",
"dayjs": "^1.11.7",
"eslint-config-next": "^14.2.5",
"next": "^14.2.5",
"next-transpile-modules": "^10.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-syntax-highlighter": "^15.5.0",
"react-tailwindcss-datepicker": "^1.7.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@types/node": "^22.3.0",
"@types/react": "^18.3.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"autoprefixer": "^10.4.13",
"dayjs": "^1.11.7",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"pinst": "^3.0.0",
"postcss": "^8.4.19",
"prettier": "^3.3.3",
"tailwindcss": "^3.2.4",
"typescript": "5.5.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint",
"prettier --write"
],
"*.{html,css,scss,json,md}": [
"prettier --write"
]
}
}