-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.48 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
81
82
83
84
85
86
87
{
"name": "groute_fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test:unit": "vitest run",
"test:e2e": "playwright test && playwright show-report",
"test:e2e:run": "playwright test",
"test:e2e:report": "playwright show-report",
"lint": "eslint . --ext .js,.ts,.tsx --fix",
"lint:ci": "eslint . --max-warnings 0",
"prepare": "husky install",
"format": "prettier --write .",
"format:check": "prettier --check .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic"
},
"lint-staged": {
"*.{ts,tsx,js,json,css,md}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@next/third-parties": "^16.2.6",
"@tanstack/query-sync-storage-persister": "^5.100.13",
"@tanstack/react-query": "^5.100.13",
"@tanstack/react-query-persist-client": "^5.100.13",
"clsx": "^2.1.1",
"firebase": "^12.13.0",
"ky": "^2.0.2",
"lottie-react": "^2.4.1",
"next": "16.2.2",
"react": "19.2.4",
"react-day-picker": "^9.14.0",
"react-dom": "19.2.4",
"react-mobile-picker": "^1.2.0",
"recharts": "^3.8.1",
"server-only": "^0.0.1",
"swiper": "^12.1.4",
"tailwind-merge": "^3.5.0",
"zustand": "^5.0.12"
},
"browserslist": [
"chrome >= 87",
"firefox >= 78",
"safari >= 14",
"edge >= 88",
"not dead"
],
"devDependencies": {
"@playwright/test": "^1.60.0",
"@storybook/addon-a11y": "^10.3.5",
"@storybook/addon-docs": "^10.3.5",
"@storybook/nextjs": "^10.3.5",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"chromatic": "^16.5.0",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-storybook": "^10.3.5",
"husky": "^8.0.0",
"jsdom": "^29.1.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^10.3.5",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.8"
}
}