-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (79 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (79 loc) · 2.55 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
{
"name": "client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"format": "biome format --write ./",
"preview": "vite preview",
"test" :"jest",
"cy:open-e2e": "cypress open --e2e --browser chrome",
"cy:open-unit": "cypress open --e2e --browser chrome",
"cy:run-unit": "cypress run --component",
"cy:e2e": "start-server-and-test start http-get://localhost:3000 cy:open-e2e"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --files-ignore-unknown=true",
"biome check --write --no-errors-on-unmatched",
"biome check --write --organize-imports-enabled=false --no-errors-on-unmatched",
"biome check --write --unsafe --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched",
"biome lint --write --no-errors-on-unmatched"
]
},
"dependencies": {
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@tanstack/react-router": "^1.114.23",
"@tanstack/router-devtools-core": "^1.114.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.475.0",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"react-typed": "^1.2.0",
"sonner": "^2.0.1",
"swiper": "^11.2.5",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cypress/react": "^9.0.0",
"@cypress/webpack-dev-server": "^4.0.1",
"@eslint/js": "^9.19.0",
"@tanstack/router-devtools": "^1.111.11",
"@tanstack/router-plugin": "^1.111.12",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/testing-library__cypress": "^5.0.13",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"cypress": "^14.1.0",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"postcss": "^8.5.3",
"tailwindcss": "3",
"ts-jest": "^29.2.6",
"typescript": "~5.7.2",
"typescript-eslint": "^8.22.0",
"vite": "^6.1.0"
},
"description": "This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.",
"main": "cypress.config.js",
"keywords": [],
"author": "",
"license": "ISC"
}