-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 4.12 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "rental-clone",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm run clean && pnpm run build:code",
"build:code": "vite build",
"ci:format": "pnpm run format",
"ci:lint": "pnpm run lint",
"ci:typecheck": "pnpm run typecheck",
"clean": "rimraf ./dist && rimraf ./coverage",
"dev": "vite",
"format": "prettier --check './src/**/*.{js,jsx,ts,tsx,css,md,json}' --config './prettier.config.cjs'",
"format:fix": "prettier --write './src/**/*.{js,jsx,ts,tsx,css,md,json}' --config './prettier.config.cjs'",
"lint": "eslint --report-unused-disable-directives --max-warnings 0 .",
"lint:fix": "eslint --fix --max-warnings 0 .",
"postbuild": "node ./postbuild.cjs",
"preview": "vite preview --port 3000",
"start": "vite preview --host localhost --port 3000",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/query-broadcast-client-experimental": "^5.56.2",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-query-devtools": "^5.56.2",
"@tanstack/react-router": "^1.58.12",
"@tanstack/react-table": "^8.20.5",
"@tanstack/react-virtual": "^3.10.7",
"@tanstack/router-devtools": "^1.58.12",
"@ts-rest/core": "^3.51.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"compare-versions": "^6.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^11.9.0",
"i18next": "^23.15.1",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.6.1",
"jsurl2": "^2.2.0",
"lucide-react": "^0.438.0",
"oidc-client-ts": "^3.0.1",
"react": "^18.3.1",
"react-compiler-runtime": "file:./libs/react-compiler-runtime",
"react-day-picker": "^9.0.8",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-i18next": "^15.0.2",
"react-oidc-context": "^3.1.1",
"react-signature-canvas": "^1.0.6",
"recharts": "2.13.0-alpha.4",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"timescape": "^0.5.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/eslint-plugin-router": "^1.58.6",
"@tanstack/router-plugin": "^1.58.12",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-signature-canvas": "^1.0.5",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "0.0.0-experimental-7449567-20240905",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-compiler": "0.0.0-experimental-8d8bd53-20240905",
"eslint-plugin-react-hooks": "5.1.0-beta-26f2496093-20240514",
"globals": "^15.9.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.13",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.8"
}
}