-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.46 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.46 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
{
"name": "dosimex",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "ANALYZE=true next build",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"jest": "jest",
"jest:watch": "jest --watch",
"jest:coverage": "jest --coverage",
"check-types": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . --max-warnings 0"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.6",
"@mdi/js": "^6.9.96",
"@mdi/react": "^1.6.1",
"country-flag-icons": "^1.5.19",
"csstype": "^3.1.3",
"next": "15.5.9",
"next-remove-imports": "^1.0.12",
"react": "18.3.1",
"react-burger-menu": "^3.1.0",
"react-device-detect": "^2.2.3",
"react-dom": "18.3.1",
"react-multi-carousel": "^2.8.6",
"react-parallax-tilt": "^1.7.304",
"react-phone-number-input": "^3.4.12",
"react-toastify": "^8.2.0",
"react-youtube": "^7.14.0",
"styled-components": "^6.1.19"
},
"devDependencies": {
"@eslint/compat": "^1.3.1",
"@eslint/js": "^9.32.0",
"@next/bundle-analyzer": "^15.5.1",
"@tailwindcss/postcss": "^4.1.12",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "18.3.12",
"@types/react-burger-menu": "^2.8.7",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "3.2.4",
"autoprefixer": "^10.4.21",
"babel-plugin-styled-components": "^1.13.3",
"eslint": "^9.0.0",
"eslint-config-next": "^15.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unused-imports": "^4.1.4",
"ignore-loader": "^0.1.2",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.12",
"typescript": "5.8.3",
"vitest": "^3.2.4"
}
}