-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.86 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
{
"name": "keeply-client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"check-types": "tsc -b --noEmit",
"lint": "eslint . --max-warnings 0",
"review:scope": "bash ./tools/branch-review/collect_scope.sh",
"generate:types": "openapi-typescript http://localhost:8080/v3/api-docs -o src/shared/types/schema.d.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview"
},
"prettier": "./packages/configs/prettier/index.json",
"dependencies": {
"@hookform/resolvers": "^5.4.0",
"@tanstack/react-query": "^5.100.10",
"@tanstack/react-query-devtools": "^5.100.10",
"axios": "^1.16.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-error-boundary": "^6.1.2",
"react-hook-form": "^7.80.0",
"react-router": "^7.15.0",
"sonner": "^2.0.7",
"swiper": "^14.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@eslint/js": "^9.39.4",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.3.0",
"@tanstack/eslint-plugin-query": "^5.100.10",
"@types/babel__core": "^7.20.5",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.5.0",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.3",
"tailwindcss": "^4.3.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.10",
"vite-plugin-svgr": "^5.2.0"
}
}