-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.16 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.16 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
{
"name": "react_project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint:eslint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:style": "stylelint './src/**/*.{css,scss}' --fix",
"lint:steiger": "steiger ./src",
"format": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@reduxjs/toolkit": "^2.9.0",
"clsx": "^2.1.1",
"modern-normalize": "^3.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.68.0",
"react-player": "^3.4.0",
"react-redux": "^9.2.0",
"react-router": "^7.6.1",
"swiper": "^11.2.8",
"zod": "^3.25.30"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@feature-sliced/steiger-plugin": "^0.5.7",
"@types/node": "^24.10.1",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-redux": "^7.1.34",
"@types/swiper": "^5.4.3",
"@vitejs/plugin-react": "^4.4.1",
"baseline-browser-mapping": "^2.9.12",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "3.5.3",
"sass": "^1.89.0",
"steiger": "^0.5.11",
"stylelint": "^16.19.1",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-recommended-scss": "^16.0.2",
"stylelint-config-standard": "^38.0.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss}": [
"stylelint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"resolutions": {
"baseline-browser-mapping": "^2.9.12"
}
}