-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
134 lines (134 loc) · 4.08 KB
/
package.json
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "2do-txt",
"version": "1.18.0",
"type": "module",
"description": "todo.txt-compatible task manager",
"license": "GPL-3.0",
"private": true,
"author": {
"name": "sodenn",
"email": "mail@sodenn.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/sodenn/2do-txt.git"
},
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"serve": "run-s build preview",
"test": "vitest run",
"e2e": "playwright test",
"e2e-update": "playwright test screenshots.spec.ts --update-snapshots",
"lint": "eslint src",
"fmt:check": "prettier --check ./src",
"fmt": "prettier --write ./src",
"hygiene": "run-p typecheck lint fmt:check knip",
"knip": "knip",
"i18n": "i18next --config i18next-parser.config.js \"src/**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"generate-icon-assets": "pwa-assets-generator",
"generate-splash-assets": "pwa-asset-generator ./public/splash.svg ./public --index ./index.html --splash-only --path-override --background '#90CAF9'",
"generate-pwa-assets": "run-p generate-icon-assets generate-splash-assets"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@dnd-kit/core": "6.3.1",
"@dnd-kit/modifiers": "9.0.0",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@formkit/auto-animate": "0.8.2",
"@lexical/react": "0.27.1",
"@lexical/utils": "0.27.1",
"@radix-ui/react-alert-dialog": "1.1.6",
"@radix-ui/react-checkbox": "1.1.4",
"@radix-ui/react-dialog": "1.1.6",
"@radix-ui/react-dropdown-menu": "2.1.6",
"@radix-ui/react-label": "2.1.2",
"@radix-ui/react-popover": "1.1.6",
"@radix-ui/react-scroll-area": "1.2.3",
"@radix-ui/react-select": "2.1.6",
"@radix-ui/react-slot": "1.1.2",
"@radix-ui/react-tabs": "1.1.3",
"@radix-ui/react-toast": "1.2.6",
"@radix-ui/react-tooltip": "1.1.8",
"@radix-ui/react-visually-hidden": "1.1.2",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cmdk": "1.0.4",
"date-fns": "4.1.0",
"file-saver": "2.0.5",
"geist": "^1.3.1",
"html-react-parser": "^5.1.12",
"i18next": "24.2.2",
"i18next-browser-languagedetector": "8.0.4",
"i18next-http-backend": "3.0.2",
"jszip": "3.10.1",
"lexical": "0.27.1",
"lexical-beautiful-mentions": "0.1.47",
"lodash": "4.17.21",
"lucide-react": "0.479.0",
"marked": "15.0.7",
"react": "19.0.0",
"react-day-picker": "9.6.1",
"react-dom": "19.0.0",
"react-i18next": "15.4.1",
"react-transition-group": "4.4.5",
"tailwind-merge": "3.0.2",
"vaul": "1.1.2",
"zustand": "5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.0",
"@eslint/js": "^9.13.0",
"@playwright/test": "1.51.0",
"@tailwindcss/vite": "4.0.12",
"@testing-library/react": "16.2.0",
"@types/file-saver": "2.0.7",
"@types/lodash": "4.17.16",
"@types/node": "22.13.9",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/react-transition-group": "4.4.12",
"@types/wicg-file-system-access": "2023.10.5",
"@vite-pwa/assets-generator": "0.2.6",
"@vitejs/plugin-react-swc": "3.8.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.2.0",
"happy-dom": "17.3.0",
"i18next-parser": "9.3.0",
"knip": "5.45.0",
"npm-run-all2": "7.0.2",
"prettier": "3.5.3",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-tailwindcss": "0.6.11",
"pwa-asset-generator": "6.4.0",
"tailwindcss": "4.0.12",
"tailwindcss-animate": "1.0.7",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.0",
"unplugin-fonts": "1.3.1",
"vite": "6.2.1",
"vite-plugin-pwa": "0.21.1",
"vitest": "3.0.8"
},
"overrides": {
"typescript-eslint": {
"typescript": "$typescript"
}
}
}