-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.66 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
{
"name": "gitpulse",
"private": true,
"version": "0.4.1",
"description": "Local-first Git repository analytics desktop app.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Boblebol/GitPulse.git"
},
"type": "module",
"packageManager": "pnpm@10.27.0",
"pnpm": {
"overrides": {
"postcss": "^8.5.10"
},
"onlyBuiltDependencies": [
"esbuild"
]
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"site:dev": "vite --config vite.site.config.ts",
"site:build": "tsc -p tsconfig.site.json && vite build --config vite.site.config.ts",
"site:preview": "vite preview --config vite.site.config.ts",
"preview": "vite preview",
"tauri": "tauri",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@tanstack/react-query": "^5.100.8",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-opener": "^2",
"lucide-react": "^1.14.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.14.2",
"recharts": "^3.8.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.4",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^6.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"tailwindcss": "^4.2.4",
"ts-jest": "^29.4.9",
"typescript": "~6.0.3",
"vite": "^8.0.10"
}
}