-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.91 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.91 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "snack25-fe",
"version": "0.1.0",
"private": true,
"license": "BSD-3-Clause-Clear",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"preinstall": "sh .husky/set-node.sh",
"predev": "sh .husky/check-pnpm.sh || (echo '\\033[1;31m❌ ERROR:\\033[0m \\033[1;33mpnpm dev\\033[0m \\033[1;32m명령어를 사용하세요\\033[0m' && npx only-allow pnpm && exit 1)",
"prebuild": "sh .husky/check-pnpm.sh || (echo '\\033[1;31m❌ ERROR:\\033[0m \\033[1;33mpnpm build\\033[0m \\033[1;32m명령어를 사용하세요\\033[0m' && npx only-allow pnpm && exit 1)",
"prestart": "sh .husky/check-pnpm.sh || (echo '\\033[1;31m❌ ERROR:\\033[0m \\033[1;33mpnpm start\\033[0m \\033[1;32m명령어를 사용하세요\\033[0m' && npx only-allow pnpm && exit 1)",
"prelint": "sh .husky/check-pnpm.sh || (echo '\\033[1;31m❌ ERROR:\\033[0m \\033[1;33mpnpm lint\\033[0m \\033[1;32m명령어를 사용하세요\\033[0m' && npx only-allow pnpm && exit 1)",
"precommit": "sh .husky/check-pnpm.sh || (echo '\\033[1;31m❌ ERROR:\\033[0m \\033[1;33mpnpm test\\033[0m \\033[1;32m명령어를 사용하세요\\033[0m' && npx only-allow pnpm && exit 1)",
"check:pnpm": "command -v pnpm",
"format:fix": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css}'",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"stylelint:fix": "stylelint --fix 'src/**/*.css'",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"test": "jest",
"postinstall": "sh .husky/check-pnpm.sh"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss}": [
"stylelint --fix",
"prettier --write"
]
},
"dependencies": {
"@headlessui/react": "2.2.0",
"@radix-ui/react-dialog": "1.1.6",
"@radix-ui/react-dropdown-menu": "2.1.6",
"@radix-ui/react-navigation-menu": "1.2.5",
"@radix-ui/react-select": "2.1.6",
"@radix-ui/react-slot": "1.1.2",
"@tailwindcss/postcss": "^4.0.15",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"framer-motion": "12.6.3",
"js-cookie": "3.0.5",
"jsonwebtoken": "9.0.2",
"jwt-decode": "4.0.0",
"lucide-react": "0.487.0",
"next": "15.4.10",
"postcss": "^8.5.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "7.55.0",
"shadcn-ui": "0.9.5",
"sonner": "2.0.3",
"tailwind-merge": "3.1.0",
"tailwindcss": "^4.0.15",
"tailwindcss-animate": "1.0.7",
"zustand": "5.0.3"
},
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@eslint/eslintrc": "^3",
"@eslint/js": "9.23.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@stylistic/stylelint-config": "2.0.0",
"@types/js-cookie": "3.0.6",
"@types/jsonwebtoken": "9.0.9",
"@types/jwt-decode": "3.1.0",
"@types/node": "^22.13.10",
"@types/react": "^19.0.12",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "8.29.0",
"autoprefixer": "^10.4.21",
"commitlint-config-gitmoji": "2.3.1",
"eslint": "^9.22.0",
"eslint-config-next": "15.2.4",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sonarjs": "3.0.2",
"eslint-plugin-unused-imports": "4.1.4",
"husky": "^9.1.7",
"install": "0.13.0",
"lint-staged": "^15.5.0",
"prettier": "^3.5.1",
"prettier-plugin-prisma": "^5.0.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"stylelint": "16.17.0",
"stylelint-config-clean-order": "7.0.0",
"stylelint-config-recess-order": "6.0.0",
"stylelint-config-standard": "37.0.0",
"stylelint-config-tailwindcss": "^1.0.0",
"stylelint-order": "6.0.4",
"typescript": "^5"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp"
]
}
}