-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.58 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.58 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
{
"name": "chuck",
"version": "0.5.1",
"description": "",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "npm run check:backend && npm run check:frontend",
"check:frontend": "npm run check:biome -- ./src/ ./tests/ && npm run check:svelte -- ./src/ ./tests/",
"check:svelte": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:biome": "npx biome check --no-errors-on-unmatched --files-ignore-unknown=true",
"check:backend": "cargo clippy --workspace -- -D warnings",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "npx biome format --write --no-errors-on-unmatched --files-ignore-unknown=true",
"tauri": "tauri",
"tauri-debug": "RUST_BACKTRACE=1 RUST_LOG=debug tauri dev",
"tauri-debug-win": "cmd /c \"set RUST_BACKTRACE=1 && set RUST_LOG=debug && tauri dev\"",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cargo test",
"test:frontend": "npm run test:frontend:unit && npm run test:frontend:integration",
"test:frontend:unit": "vitest run",
"test:frontend:integration": "playwright test --project=integration",
"test:frontend:performance": "playwright test --project=performance",
"version": "node scripts/bump-version.js"
},
"license": "MIT",
"dependencies": {
"@protomaps/basemaps": "^5.7.0",
"@tanstack/svelte-virtual": "^3.13.12",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-cli": "^2.4.0",
"@tauri-apps/plugin-dialog": "^2.4.0",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-opener": "^2",
"dompurify": "^3.3.0",
"inaturalistjs": "github:inaturalist/inaturalistjs",
"lightningcss": "^1.30.2",
"lucide-svelte": "^0.546.0",
"maplibre-gl": "^5.9.0",
"markdown-it": "^14.1.0",
"svelte-dnd-action": "^0.9.67"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@playwright/test": "^1.56.1",
"@skeletonlabs/skeleton": "^4.11.0",
"@skeletonlabs/skeleton-svelte": "^4.11.0",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.9.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/vite": "^4.1.13",
"@tauri-apps/cli": "^2",
"@types/jsdom": "^27.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.0.3",
"jsdom": "^27.0.1",
"lefthook": "^2.0.16",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^4.1.13",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vitest": "^4.0.4"
}
}