-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.81 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.81 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
{
"name": "pyokemon-web",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -b && vite build",
"dev": "vite",
"dev:dev": "cross-env VITE_ENVIRONMENT=dev vite",
"dev:local": "cross-env VITE_ENVIRONMENT=local vite",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\" --cache",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@ant-design/colors": "^7.2.0",
"@ant-design/icons": "^5.6.1",
"@ant-design/v5-patch-for-react-19": "^1.0.3",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@hookform/resolvers": "^3.10.0",
"@mui/material": "^6.4.3",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-query-devtools": "^5.66.0",
"@tosspayments/payment-sdk": "^1.9.1",
"@use-funnel/react-router": "^0.0.1",
"antd": "^5.24.0",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"dompurify": "^3.2.6",
"qs": "^6.14.0",
"react": "^19.0.0",
"react-calendar": "^6.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.5.0",
"react-router": "^7.1.3",
"styled-components": "^6.1.14",
"sweetalert2": "^11.22.2",
"swiper": "^11.2.10",
"tailwindcss": "^4.1.11",
"vite-plugin-svgr": "^4.3.0",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@react-router/dev": "^7.1.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.10.7",
"@types/qs": "^6.9.18",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"typescript": "~5.7.3",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.11",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.3"
},
"packageManager": "pnpm@10.2.1"
}