-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.29 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "yarn@1.22.22",
"dependencies": {
"@vitejs/plugin-react": "^4.3.4",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^5.0.0",
"react-icons": "^5.5.0",
"react-redux": "^9.2.0",
"react-router": "^7.6.0",
"redux": "^5.0.1",
"sass": "^1.69.0",
"usehooks-ts": "^3.1.1",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.3",
"@types/node": "^22.14.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^4.3.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-validate-jsx-nesting": "^0.1.1",
"postcss": "^8.5.3",
"prettier": "^3.2.5",
"tailwindcss": "^4.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^6.2.4",
"vite-plugin-checker": "^0.9.1",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"validate": "yarn type-check && yarn lint && yarn format",
"clean-install": "rm -rf node_modules .eslintcache yarn.lock && yarn install",
"sort-imports": "eslint --fix --rule 'import/order: [\"error\", {\"groups\": [\"builtin\",\"external\",\"internal\",\"parent\",\"sibling\",\"index\",\"object\",\"type\"], \"newlines-between\": \"always\"}]' src/**/*.{ts,tsx}"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version"
]
},
"engines": {
"node": ">=18.0.0"
}
}