-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.77 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.77 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
{
"name": "frontend-advanced",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "jest"
},
"dependencies": {
"@apollo/client": "^3.12.8",
"@reduxjs/toolkit": "^2.5.1",
"@stripe/react-stripe-js": "^3.1.1",
"@stripe/stripe-js": "^5.6.0",
"@tailwindcss/vite": "^4.0.3",
"axios": "^1.7.9",
"dompurify": "^3.2.4",
"firebase": "^11.2.0",
"formik": "^2.4.6",
"graphql": "^16.10.0",
"i18next": "^24.2.2",
"lucide-react": "^0.474.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-focus-lock": "^2.13.5",
"react-hook-form": "^7.54.2",
"react-i18next": "^15.4.0",
"react-icons": "^5.4.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.1.3",
"react-toastify": "^11.0.3",
"tailwindcss": "^4.0.3",
"yup": "^1.6.1"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"devDependencies": {
"@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"@eslint/js": "^9.18.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@vitejs/plugin-react": "^4.3.4",
"babel-jest": "^29.7.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"vite": "^6.0.5"
}
}