generated from joaopaulomoraes/reactjs-vite-tailwindcss-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.28 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
{
"name": "reactjs-vite-tailwindcss-boilerplate",
"description": "This is a boilerplate build with Vite, React 18, TypeScript, Vitest, Testing Library, TailwindCSS 3, Eslint and Prettier.",
"version": "0.1.0",
"private": true,
"type": "module",
"author": {
"name": "João Paulo Moraes",
"email": "[email protected]",
"url": "https://github.com/joaopaulomoraes"
},
"bugs": {
"url": "https://github.com/joaopaulomoraes/reactjs-vite-tailwindcss-boilerplate/issues",
"email": "[email protected]"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint src --max-warnings=0",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@react-three/drei": "^9.108.4",
"@react-three/fiber": "^8.16.8",
"@tabler/icons-react": "^3.10.0",
"axios": "^1.7.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.3.6",
"i18next": "^23.12.1",
"jotai": "^2.9.0",
"mini-svg-data-uri": "^1.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.3",
"react-router-dom": "^6.24.1",
"tailwind-merge": "^2.4.0",
"tailwind-variants": "^0.2.1",
"tdesign-react": "^1.7.6",
"three": "^0.166.1",
"three-globe": "^2.31.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.3.1",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/ui": "^1.6.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-tailwindcss": "^3.17.4",
"happy-dom": "^12.10.3",
"postcss": "^8.4.39",
"prettier": "3.1.1",
"tailwindcss": "^3.4.5",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}