-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "react-vite-shadcn-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "prettier . --write && eslint . --fix",
"test": "pnpm test:types && pnpm test:jest && pnpm test:cypress:ci",
"test:jest": "jest",
"test:cypress:ci": "cypress run --component --browser chrome",
"test:cypress:dev": "cypress open --component --browser chrome",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@tanstack/react-router": "^1.65.0",
"class-variance-authority": "^0.5.3",
"clsx": "^1.2.1",
"lucide-react": "^0.162.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@cypress/react18": "^2.0.1",
"@eslint/js": "^9.12.0",
"@jest/globals": "^29.7.0",
"@tanstack/router-devtools": "^1.65.0",
"@tanstack/router-plugin": "^1.65.0",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.20",
"cypress": "^13.15.0",
"eslint": "^9.12.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.11.0",
"jest": "^29.7.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.2.5",
"typescript": "^5.2",
"typescript-eslint": "^8.9.0",
"vite": "5.1.8"
}
}