-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.61 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
{
"name": "vite-react-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "src/main.tsx",
"scripts": {
"dev": "npx vite",
"host": "npx vite --host",
"build": "npx vite build",
"lint": "npx eslint .",
"lint:auto-fix": "npx eslint src --fix",
"lint:format": "npx prettier . --write"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"path": "^0.12.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.2.0",
"react-router-dom": "^6.26.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@conarti/eslint-plugin-feature-sliced": "^1.0.5",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-boundaries": "^5.0.0",
"eslint-plugin-css": "^0.11.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"sass": "^1.79.2",
"sass-embedded": "^1.79.1",
"scss": "^0.2.4",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "^6.0.7"
}
}