-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.12 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.12 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
{
"name": "shesaw",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"build:clean": "rm -rf .next && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "husky init && echo 'pnpm exec lint-staged' > .husky/pre-commit && echo 'pnpm run lint:fix' > .husky/pre-push",
"format": "prettier --write --cache .",
"lint:fix": "eslint --fix --cache .",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@tanstack/react-query": "^5.8.4",
"@tosspayments/payment-sdk": "^1.9.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.534.0",
"next": "^13.5.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.52.2",
"sass": "^1.63.3",
"swiper": "^11.2.10",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@next/eslint-plugin-next": "^13.1.6",
"@svgr/webpack": "^6.5.1",
"@tanstack/react-query-devtools": "^5.8.8",
"@types/node": "20.3.0",
"@types/react": "18.2.11",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"autoprefixer": "^10.4.21",
"eslint": "9.32.0",
"eslint-config-next": "15.4.5",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^16.3.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.5.6",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.1.6",
"typescript-eslint": "^8.38.0",
"typescript-plugin-css-modules": "^5.1.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,scss,css}": [
"prettier --write"
]
}
}