-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.63 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.63 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
{
"name": "vite-complete-react-app",
"version": "1.0.0",
"type": "module",
"author": {
"name": "Cristiano Raimondi",
"url": "https://github.com/chrisuser"
},
"dependencies": {
"@reduxjs/toolkit": "^2.11.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"axios": "^1.13.2",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-redux": "^9.2.0",
"react-router": "^7.10.1",
"redux-persist": "^6.0.0"
},
"scripts": {
"start": "vite --port 3000 --open",
"dev": "vite --port 3000 --open",
"build": "vite build",
"serve": "vite preview --open",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"format": "prettier --check ."
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/dom": "^10.4.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^29.0.2",
"postcss": "^8.4.45",
"prettier": "^3.7.4",
"tailwindcss": "^4.0.0",
"typescript": "^5.9.3",
"vite": "^7.2.6",
"vitest": "^4.0.15"
}
}