-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.69 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.69 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"private": true,
"type": "module",
"license": "MIT",
"version": "1.0.1",
"name": "react-sample",
"author": "Ramin Rezaei",
"homepage": "https://react-sample.ir",
"description": "React Sample is a sample of the ReactJs project for starting easily and fast.",
"scripts": {
"dev": "vite",
"test": "vitest",
"prepare": "husky",
"lint": "eslint . --fix",
"format": "prettier --write .",
"build": "tsc -b && vite build",
"check-lint": "eslint ./src/**/*",
"check-format": "prettier . --check",
"preview": "vite preview --port 8080",
"check-types": "tsc --pretty --noEmit --project ./",
"pretty": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,scss}\"",
"lint:style": "npx stylelint --fix \"src/**/*.{css,scss}\" --allow-empty-input"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.46.2"
},
"lint-staged": {
"src/**/*.{json,css,scss}": "prettier --write",
"src/**/*.{js,ts,tsx,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@reduxjs/toolkit": "^2.8.2",
"@tailwindcss/vite": "^4.1.11",
"animate.css": "^4.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"firebase": "^12.0.0",
"qs": "^6.14.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.61.1",
"react-hot-toast": "^2.5.2",
"react-redux": "^9.2.0",
"react-router": "^7.7.1",
"redux-persist": "^6.0.0",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.3.6",
"vaul": "^1.1.2"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/qs": "^6.14.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"prettier-plugin-sort-imports": "^1.8.8",
"prettier-plugin-tailwindcss": "^0.6.14",
"sass-embedded": "^1.89.2",
"stylelint": "^16.23.0",
"stylelint-config-standard": "^39.0.0",
"stylelint-config-standard-scss": "^15.0.1",
"typescript": "~5.9.2",
"typescript-eslint": "^8.38.0",
"vite": "^7.0.6",
"vite-plugin-pwa": "^1.0.2",
"vitest": "^3.2.4"
}
}