-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.18 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.18 KB
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
80
81
82
83
84
85
86
{
"name": "my_links_user_team",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix && prettier --write ."
},
"dependencies": {
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@tanstack/react-query": "^5.61.3",
"@tanstack/react-query-devtools": "^5.61.3",
"@types/kakao-js-sdk": "^1.39.5",
"@types/react-datepicker": "^4.19.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^2.30.0",
"fabric": "^6.4.3",
"framer-motion": "^11.11.17",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^0.461.0",
"moment": "2.30.1",
"mongodb": "^6.10.0",
"next": "^14.2.35",
"react": "^18",
"react-datepicker": "^4.21.0",
"react-dom": "^18",
"react-icons": "^5.3.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/fabric": "^5.3.9",
"@types/jsonwebtoken": "^9.0.7",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "10.4.20",
"eslint": "^8",
"eslint-config-next": "^16.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"tailwindcss": "3.4.13",
"typescript": "^5"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.tsx": [
"eslint --fix",
"prettier --write"
],
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.css": [
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}