forked from FRONTENDBOOTCAMP-14th/Final-project-team7
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.83 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
{
"private": true,
"type": "module",
"name": "next-js",
"version": "1.0.0",
"description": "파이널 프로젝트 템플릿",
"scripts": {
"dev": "bun --bun next dev --turbopack",
"prod": "next build --turbopack",
"start": "next start",
"lint": "bun lint:check --fix",
"lint:check": "eslint . --cache --cache-location ./node_modules/.cache/eslint/.eslintcache",
"type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json}\" --cache --list-different --ignore-path .gitignore",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json}\" --cache --ignore-path .gitignore"
},
"dependencies": {
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.58.0",
"immer": "^10.1.1",
"lucide-react": "^0.542.0",
"next": "^15.5.4",
"react": "^19.1.1",
"react-calendar": "^6.0.0",
"react-dom": "^19.1.1",
"sonner": "^2.0.7",
"use-immer": "^0.11.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@tailwindcss/postcss": "^4.1.13",
"@types/node": "24.5.1",
"@types/react": "19.1.13",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"clsx": "^2.1.1",
"eslint": "^9.35.0",
"eslint-config-next": "^15.5.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.4.0",
"postcss": "^8.5.6",
"prettier": "^3.4.2",
"supabase": "^2.47.2",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2"
}
}