-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.94 KB
/
package.json
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
{
"name": "custom-k",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint \"./src/**/*.{ts,tsx,js,jsx}\"",
"lint:fix": "eslint --fix \"./src/**/*.{ts,tsx,js,jsx}\"",
"prettier": "prettier --write 'src/**/*.{js,ts,jsx,tsx}'",
"format": "npm run prettier && npm run lint:fix",
"preview": "vite preview",
"tsc": "tsc -b",
"deploy": "node deploy_script.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.637.0",
"@mantine/core": "^7.12.2",
"@mantine/dates": "^7.12.2",
"@mantine/hooks": "^7.12.1",
"@paypal/react-paypal-js": "^8.6.0",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.20",
"aws-sdk": "^2.348.0",
"axios": "^1.3.1",
"dayjs": "^1.11.12",
"dotenv": "^16.4.5",
"framer-motion": "^11.3.23",
"immer": "^10.1.1",
"js-cookie": "^3.0.5",
"mime-types": "^2.1.35",
"normalize.css": "^8.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2",
"react-image-crop": "^11.0.6",
"react-paginate": "^8.2.0",
"react-router-dom": "^6.26.1",
"react-transition-group": "^4.4.5",
"swiper": "^11.1.10",
"tailwind-merge": "^2.5.0",
"tw-merge": "^0.0.1-alpha.3",
"wrap-ansi": "^9.0.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@svgr/rollup": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.8",
"@types/babel__template": "^7.4.4",
"@types/babel__traverse": "^7.20.6",
"@types/cookie": "^0.6.0",
"@types/estree": "^1.0.5",
"@types/js-cookie": "^3.0.6",
"@types/json5": "^2.2.0",
"@types/mute-stream": "^0.0.4",
"@types/node": "^22.5.0",
"@types/prop-types": "^15.7.12",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/react-transition-group": "^4.4.11",
"@types/statuses": "^2.0.5",
"@types/tough-cookie": "^4.0.5",
"@types/wrap-ansi": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.3.1",
"cosmiconfig": "^9.0.0",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"husky": "^8.0.0",
"postcss": "^8.4.41",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.9",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0",
"vite": "^5.4.3",
"vite-plugin-svgr": "^4.2.0"
}
}