-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
52
53
54
55
56
57
58
{
"name": "vite-react-tailwind-eslint-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"clean": "rm -rf node_modules",
"lint": "eslint",
"lint-fix": "eslint --fix",
"format": "biome format ./src",
"format-fix": "biome format --verbose ./src --write",
"format-prettier": "prettier . --check --config .prettierrc.mjs --ignore-path .prettierignore",
"test": "node --test",
"typecheck": "tsc -p tsconfig.json",
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"@talkohavy/lodash": "^1.3.0",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"highlight.js": "^11.11.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"react-router": "^7.1.1",
"react-router-dom": "^7.1.1",
"react-tooltip": "^5.28.0",
"tailwind": "^4.0.0",
"tailwind-merge": "^2.6.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-plugin-perfectionist": "^4.4.0",
"eslint-plugin-react-compiler": "19.0.0-beta-b2e8e9c-20241220",
"globals": "^15.14.0",
"husky": "^9.1.7",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"sass-embedded": "^1.83.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vite-plugin-svgr": "^4.3.0"
}
}