-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2 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
59
60
{
"name": "vite-react-tailwind-eslint-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"clean": "rm -rf node_modules",
"lint": "eslint -c .eslintrc.json --ignore-path .eslintignore --report-unused-disable-directives --max-warnings 0 '**/*/*.{js,jsx,tsx,ts,d.ts,cjs,mjs}'",
"lint-fix": "eslint --fix -c .eslintrc.json --ignore-path .eslintignore '**/*/*.{js,jsx,tsx,ts,d.ts,cjs,mjs}'",
"format": "biome format --verbose ./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.2.7",
"@talkohavy/lodash": "^1.3.0",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.0",
"react-tooltip": "^5.28.0",
"tailwind": "^4.0.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/node": "^22.1.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-ezlint": "^1.6.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-refresh": "^0.4.9",
"eslint-plugin-sort-exports": "^0.9.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^9.1.4",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"redux-logger": "^3.0.6",
"sass-embedded": "^1.78.0",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4",
"vite": "^5.4.3"
}
}