-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.74 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
{
"name": "tastebox-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"format": "biome check --write . && prettier --write \"**/*.md\"",
"lint": "biome check .",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prepare": "husky"
},
"dependencies": {
"@biomejs/biome": "^2.0.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@hookform/resolvers": "^5.1.1",
"@innocells/branch-naming-check": "^1.0.0",
"@radix-ui/react-progress": "^1.1.7",
"@tanstack/react-query": "^5.81.2",
"axios": "^1.10.0",
"commitlint-plugin-function-rules": "^4.0.2",
"dotenv": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"lucide-react": "^0.523.0",
"polished": "^4.3.1",
"qs": "^6.14.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.59.0",
"react-router-dom": "^7.6.2",
"react-slick": "^0.30.3",
"slick-carousel": "^1.8.1",
"sonner": "^2.0.6",
"styled-components": "^6.1.19",
"zod": "^3.25.67",
"zustand": "^5.0.5"
},
"devDependencies": {
"@faker-js/faker": "^9.8.0",
"@types/node": "^24.0.4",
"@types/qs": "^6.14.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"biome": "^0.3.3",
"globals": "^15.15.0",
"msw": "^2.10.2",
"prettier": "^3.6.2",
"typescript": "~5.7.2",
"vite": "^6.2.0"
},
"msw": {
"workerDirectory": [
"public"
]
},
"lint-staged": {
"*.{js,ts,json,jsonc,jsx,tsx}": [
"npx biome check --write"
],
"*.md": [
"prettier --write"
]
}
}