-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.83 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "koiproject",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:prod": "vite --mode production",
"build": "vite build",
"build:dev": "vite build --mode development",
"build:prod": "vite build --mode production",
"preview": "vite preview",
"prepare": "husky",
"lint": "yarn run prettier:fix && yarn run eslint:check && yarn run check-types",
"lint:fix": "yarn run prettier:fix && yarn run eslint:fix && yarn run check-types",
"prettier:check": "prettier --check . --cache",
"prettier:fix": "prettier --write . --cache",
"eslint:fix": "eslint --fix ./src --ext .ts,.tsx,.js,.jsx --max-warnings 0",
"eslint:check": "eslint ./src --ext .ts,.tsx,.js,.jsx --report-unused-disable-directives --max-warnings 0",
"eslint:debug": "eslint ./src --debug --ext .ts,.tsx,.js,.jsx --max-warnings 0",
"eslint:check-allow-warning": "eslint --quiet ./src --ext .ts,.tsx,.js,.jsx",
"check-conflict-prettier-eslint": "npx eslint-config-prettier src/App.tsx --print-config",
"check-types": "tsc --noemit"
},
"dependencies": {
"@cloudinary/react": "^1.13.1",
"@cloudinary/url-gen": "^1.21.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@hookform/resolvers": "^3.9.0",
"@mui/icons-material": "^6.0.2",
"@mui/material": "^6.0.2",
"@mui/x-data-grid": "^7.17.0",
"@ngneat/falso": "^7.2.0",
"@popperjs/core": "^2.11.8",
"@react-oauth/google": "^0.12.1",
"@stomp/stompjs": "^7.0.0",
"@types/node": "^22.5.4",
"@types/sockjs-client": "^1.5.4",
"@types/stompjs": "^2.3.9",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"axios": "^1.7.7",
"bootstrap": "^5.3.3",
"classnames": "^2.3.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"framer-motion": "^11.11.11",
"husky": "^9.1.5",
"koiproject": "file:",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-helmet-async": "2.0.5",
"react-hook-form": "^7.53.0",
"react-router-dom": "^6.26.1",
"react-scroll-to-top": "3.0.0",
"react-toastify": "^10.0.5",
"recharts": "^2.13.3",
"sass": "1.32.13",
"sockjs-client": "^1.6.1",
"styled-components": "^6.1.13",
"typescript": "^5.5.4",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "8.57.0",
"@faker-js/faker": "^9.0.3",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "6.1.11",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"eslint-plugin-tailwindcss": "^3.17.4",
"globals": "^15.9.0",
"postcss": "^8.4.47",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.12",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.0",
"vite": "^5.4.10"
}
}