-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.92 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
{
"name": "upcount",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"type-check": "tsc --noEmit",
"lint": "tsc --noEmit && oxlint src/",
"format": "oxfmt --write src/",
"format:check": "oxfmt --check src/",
"preview": "vite preview",
"extract": "lingui extract"
},
"dependencies": {
"@ant-design/icons": "6.1.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@lingui/core": "^5.9.0",
"@lingui/macro": "^5.9.0",
"@lingui/react": "^5.9.0",
"@react-pdf/renderer": "4.3.2",
"@sentry/react": "^10.38.0",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-http": "^2.5.7",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.3.0",
"@tauri-apps/plugin-sql": "^2.3.2",
"@tauri-apps/plugin-updater": "^2.10.0",
"antd": "5.26.1",
"axios": "1.13.4",
"dayjs": "^1.11.19",
"decimal.js": "^10.5.0",
"jotai": "2.17.1",
"jotai-devtools": "0.13.0",
"lodash": "^4.17.23",
"nanoid": "5.1.6",
"path-to-regexp": "8.3.0",
"react": "^18",
"react-dom": "^18",
"react-pdf": "^9.2.1",
"react-router": "^7.13.0",
"usehooks-ts": "3.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@lingui/babel-plugin-lingui-macro": "^5.9.0",
"@lingui/cli": "^5.9.0",
"@lingui/conf": "^5.9.0",
"@lingui/vite-plugin": "^5.9.0",
"@sentry/vite-plugin": "^4.9.0",
"@tauri-apps/cli": "^2.10.0",
"@types/lodash": "^4.17.23",
"@types/react": "18.3.23",
"@types/react-dom": "18.3.7",
"@vitejs/plugin-react": "4.5.2",
"babel-plugin-macros": "^3.1.0",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0",
"sass": "1.97.3",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vite": "^6.3.5"
}
}