-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.05 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "dohabit",
"description": "Build lasting habits with zero friction. DoHabit is a minimalist, offline tracker. No accounts—just your progress, charts, and a personal habit journal.",
"private": true,
"license": "AGPL-3.0-only",
"version": "0.51.5",
"homepage": "https://inikann.github.io/DoHabit/",
"type": "module",
"scripts": {
"dev": "vite",
"type-check": "tsc -b",
"lint": "eslint src",
"lint:css": "stylelint 'src/**/*.css'",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "tsc -b && vitest run && vite build",
"preview": "vite preview",
"deploy:test": "VITE_TEST_BUILD=test npm run build && cross-var gh-pages -b gh-pages -d dist -m \"v$npm_package_version\"",
"deploy:preview": "VITE_TEST_BUILD=preview npm run build && cross-var npx wrangler pages deploy dist --project-name=dohabit --branch=preview --commit-message \"v$npm_package_version\"",
"deploy:prod": "npm run build && cross-var npx wrangler pages deploy dist --project-name=dohabit --branch=main --commit-message \"v$npm_package_version\""
},
"dependencies": {
"@tanstack/react-query": "^5.101.2",
"@uidotdev/usehooks": "^2.4.1",
"@web3icons/react": "^4.1.20",
"chart.js": "^4.5.1",
"clsx": "^2.1.1",
"country-flag-icons": "^1.6.20",
"es-toolkit": "^1.46.1",
"framer-motion": "^12.40.0",
"hashtag-regex": "^2.2.0",
"html2canvas-pro": "^2.0.2",
"i18next": "^26.3.1",
"i18next-browser-languagedetector": "^8.2.1",
"idb-keyval": "^6.2.5",
"linkify-plugin-hashtag": "^4.3.3",
"linkify-react": "^4.3.3",
"react": "^19.2.0",
"react-chartjs-2": "^5.3.1",
"react-circular-progressbar": "^2.2.0",
"react-dom": "^19.2.0",
"react-error-boundary": "^6.1.1",
"react-i18next": "^17.0.8",
"react-icons": "^5.6.0",
"react-qr-code": "^2.2.0",
"react-router": "^7.15.1",
"react-textarea-autosize": "^8.5.9",
"sonner": "^2.0.7",
"use-long-press": "^3.3.0",
"zustand": "^5.0.13"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tanstack/eslint-plugin-query": "^5.101.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/hashtag-regex": "^2.0.3",
"@types/node": "^24.6.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vite-pwa/assets-generator": "^1.0.2",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.9",
"cross-var": "^1.1.0",
"eslint": "^10.4.0",
"eslint-plugin-i18next": "^6.1.4",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"gh-pages": "^6.3.0",
"globals": "^17.6.0",
"stylelint": "^17.12.0",
"stylelint-config-recess-order": "^7.7.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.4",
"typescript-plugin-css-modules": "^5.2.0",
"vite": "^8.0.10",
"vite-plugin-html-config": "^2.0.2",
"vite-plugin-pwa": "^1.3.0",
"vite-plugin-svgr": "^5.2.0",
"vitest": "^4.1.9",
"workbox-core": "^7.4.1",
"workbox-window": "^7.4.1",
"wrangler": "^4.120.1"
},
"overrides": {
"sharp": "^0.33.5",
"sharp-ico": "^0.1.5"
}
}