-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.25 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
70
71
72
73
74
75
76
{
"name": "ichinichi",
"private": true,
"version": "1.0.0",
"description": "A minimalist daily note application - one note per day, forever",
"author": "katspaugh",
"repository": "https://github.com/katspaugh/ichinichi",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"typecheck": "tsc -b --pretty false",
"knip": "knip",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ct": "playwright test --config playwright-ct.config.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:seed": "playwright test tests/seed-cloud-notes.spec.ts --project=chromium --headed",
"prepare": "husky install",
"deploy": "yarn build && wrangler pages deploy",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"dependencies": {
"@supabase/supabase-js": "^2.89.0",
"dompurify": "^3.4.2",
"fflate": "^0.8.2",
"lucide-react": "^0.563.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rxdb": "^17.1.0",
"rxjs": "^7.8.2",
"turndown": "^7.2.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@playwright/experimental-ct-react": "1.57.0",
"@playwright/mcp": "^0.0.56",
"@playwright/test": "^1.57.0",
"@tauri-apps/cli": "^2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.1.0",
"@types/dompurify": "^3.2.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/turndown": "^5.0.6",
"@vitejs/plugin-react": "^6.0.1",
"cheerio": "^1.0.0",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"fake-indexeddb": "^6.2.3",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"knip": "^5.85.0",
"prettier": "^3.7.4",
"supabase": "^2.70.5",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^8.0.10",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.1.0",
"wrangler": "^4.54.0"
},
"packageManager": "yarn@4.12.0",
"resolutions": {
"playwright": "1.57.0"
}
}