forked from OpenClassrooms-Student-Center/P12_Front-end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "hrnet",
"private": true,
"type": "module",
"scripts": {
"prepare": "panda codegen",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "bun lint:biome && bun lint:typescript",
"lint:biome": "biome lint .",
"lint:typescript": "tsc",
"format": "biome format ."
},
"dependencies": {
"@fontsource/inter": "^5.0.17",
"@ngneat/falso": "^7.2.0",
"@tanstack/react-form": "0.19.0",
"@tanstack/react-query": "^5.28.14",
"@tanstack/react-router": "^1.26.9",
"@tanstack/zod-form-adapter": "^0.19.0",
"@zuruuh/react-date-picker": "^1.0.5",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"react": "^18.2.0",
"react-aria-components": "^1.1.1",
"react-dom": "^18.2.0",
"remeda": "^1.57.1",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@pandacss/dev": "^0.37.1",
"@tanstack/react-query-devtools": "^5.28.14",
"@tanstack/router-devtools": "^1.26.9",
"@tanstack/router-vite-plugin": "^1.26.8",
"@types/bun": "latest",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@vitejs/plugin-react-swc": "^3.6.0",
"typescript": "^5.4.4",
"vite": "^5"
},
"trustedDependencies": ["@biomejs/biome", "@swc/core", "esbuild"]
}