-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.73 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
{
"name": "aligner-client",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc -b",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest run",
"generate:icons": "tsx scripts/generate-icons.ts",
"generate:api": "tsx scripts/generate-api.ts",
"prepare": "husky"
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": "^22.0.0"
},
"dependencies": {
"@hookform/resolvers": "^5.7.1",
"@tanstack/react-query": "^5.101.4",
"clsx": "^2.1.1",
"ky": "^2.0.2",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-hook-form": "^7.85.0",
"react-router": "^8.3.0",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^26.1.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.8.0",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.2.0",
"prettier": "^3.9.6",
"svgo": "^3.3.4",
"swagger-typescript-api": "^13.12.6",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.9",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{ts,tsx,css,json,md}": "prettier --write"
}
}