-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.39 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.39 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
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
{
"name": "webapp",
"private": true,
"version": "0.0.0",
"type": "module",
"imports": {
"#components/*": "./src/common/components/*",
"#redux/*": "./src/redux/*",
"#utils/*": "./utils/*"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"jest": "jest",
"test": "jest",
"prepare": "husky"
},
"dependencies": {
"@aws-amplify/auth": "^6.6.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource-variable/inter": "^5.0.17",
"@fontsource/poppins": "^5.2.5",
"@heroicons/react": "^2.2.0",
"@mui/icons-material": "^7.0.2",
"@mui/material": "^7.0.2",
"@react-google-maps/api": "^2.20.6",
"@reduxjs/toolkit": "^2.2.2",
"aws-amplify": "^6.8.1",
"aws-sdk": "^2.1612.0",
"cheerio": "^1.0.0",
"country-state-city": "^3.2.1",
"formik": "^2.4.5",
"i18next-browser-languagedetector": "^8.0.2",
"install": "^0.13.0",
"node-fetch": "^3.3.2",
"postcss-loader": "^8.1.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-datepicker": "^7.3.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-phone-number-input": "^3.4.12",
"react-select": "^5.8.0",
"react-select-country-list": "^2.2.3",
"react-time-picker": "^7.0.0",
"react-toastify": "^11.0.5",
"react-tooltip": "^5.28.1",
"rsuite": "^5.77.1",
"swiper": "^11.2.6",
"use-immer": "^0.10.0",
"youtube-iframe-ctrl": "^1.0.3",
"yup": "^1.4.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/aria-query": "^5.0.4",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react-swc": "^3.5.0",
"ansi-styles": "^6.2.1",
"autoprefixer": "^10.4.21",
"axios": "^1.7.7",
"babel-jest": "^29.7.0",
"babel-preset-vite": "^1.1.3",
"daisyui": "^4.10.1",
"dom-accessibility-api": "^0.7.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.12",
"fetch-mock": "^12.1.0",
"husky": "^9.1.7",
"i18next": "^23.15.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.4.2",
"lz-string": "^1.5.0",
"postcss": "^8.5.3",
"prettier": "=3.4.2",
"pretty-format": "^29.7.0",
"react-i18next": "^15.4.1",
"react-is": "^19.0.0",
"react-redux": "^9.2.0",
"react-router": "^6.25.1",
"react-router-dom": "^6.30.0",
"react-test-renderer": "^18.3.1",
"redux": "^5.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^6.3.5",
"vitest": "^3.1.3"
},
"description": "Saayam Web Application",
"main": "postcss.config.js",
"directories": {
"test": "tests"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"npm": ">=10.9.2",
"node": ">=v22.14.0"
}
}