-
-
Notifications
You must be signed in to change notification settings - Fork 428
/
package.json
127 lines (127 loc) · 3.25 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "milan-frontend",
"version": "0.3.7",
"private": true,
"author": {
"name": "Tamal Das",
"email": "[email protected]"
},
"description": "The frontend for NgoWorld webapp.",
"license": "MIT",
"homepage": "https://milanhub.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/ngoworldcommunity/NGOWorld"
},
"keywords": [
"milan",
"milanhub",
"milan community",
"milan community app",
"milan community webapp",
"milan community frontend",
"milan community frontend app"
],
"dependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^17.6.1",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.4",
"@mui/icons-material": "^5.15.11",
"@mui/material": "^5.15.11",
"@mui/styled-engine-sc": "^6.0.0-alpha.17",
"@mui/x-date-pickers": "^6.19.5",
"@mui/x-date-pickers-pro": "^6.19.5",
"@reduxjs/toolkit": "^2.1.0",
"@studio-freight/lenis": "^1.0.33",
"@studio-freight/react-lenis": "^0.0.38",
"@tanstack/react-query": "^5.28.9",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/user-event": "^14.4.3",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"aos": "^2.3.4",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"cypress": "^13.2.0",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"framer-motion": "^11.0.3",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-calendar": "^4.8.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.6.4",
"react-helmet-async": "^2.0.4",
"react-hook-form": "^7.49.3",
"react-icons": "^4.10.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.26.2",
"react-scripts": "^5.0.1",
"react-select": "^5.7.5",
"react-spinners": "^0.13.7",
"react-time-picker": "^6.6.0",
"react-toastify": "^9.1.1",
"redux-persist": "^6.0.0",
"styled-components": "^6.1.8",
"swiper": "^10.3.0",
"swr": "^2.2.5",
"url": "^0.11.0",
"vite-plugin-svgr": "^2.2.2",
"web-vitals": "^3.3.1",
"zod": "^3.22.4",
"zustand": "^4.4.1"
},
"scripts": {
"dev": "vite --port 3000",
"build": "vite build",
"preview": "vite preview",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"prepare": "husky install",
"docker-frontend": "docker-compose -f docker-compose.dev.yaml up --build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.42.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.0",
"lint-staged": "^13.2.1",
"prettier": "^3.1.1",
"sass": "^1.70.0",
"vite": "^4.4.2",
"vite-plugin-pwa": "^0.16.5"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}