generated from MarcosSantosDev/template-react-tailwind-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.46 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
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
89
{
"name": "netflix-tmdb",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port=3000",
"build:dev": "vite build --mode development",
"build:prod": "vite build",
"preview": "vite preview",
"prepare": "husky install",
"test": "vitest",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"lint": "eslint ./src/**/*.{ts,tsx}",
"format": "prettier --write ./src/**/*.{ts,tsx}"
},
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^9.0.3",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@tanstack/react-query": "^5.56.2",
"@testing-library/jest-dom": "^6.5.0",
"@vitejs/plugin-react": "^4.3.4",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"framer-motion": "^11.9.0",
"jotai": "^2.10.3",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.441.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.53.0",
"react-router": "^7.1.1",
"react-toastify": "^10.0.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@biomejs/biome": "1.9.4",
"@mswjs/data": "^0.16.2",
"@tanstack/eslint-plugin-query": "^5.58.1",
"@tanstack/react-query-devtools": "^5.58.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.7.4",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^8.2.5",
"husky": "^8.0.1",
"jsdom": "^25.0.1",
"lint-staged": "^13.0.3",
"msw": "^2.7.0",
"postcss": "^8.4.47",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.13",
"typescript": "~5.6.2",
"vite": "^5.4.8",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^3.5.1",
"vitest": "^2.1.2"
},
"msw": {
"workerDirectory": [
"public"
]
}
}