-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.91 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.91 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
92
93
94
95
{
"name": "todo-list",
"private": true,
"version": "1.5.6",
"type": "module",
"keywords": [
"todo list",
"projects",
"todo"
],
"description": "A Complex Todo List with Projects",
"repository": "github:eldarlrd/todo-list",
"homepage": "https://eldarlrd.is-a.dev/todo-list",
"author": "Eldar Pashazade <eldarlrd@pm.me> (https://eldarlrd.is-a.dev)",
"license": "AGPL-3.0-only",
"scripts": {
"dev": "vite --open",
"bundle": "tsc -b && vite build",
"preview": "vite preview",
"spec": "vitest",
"cover": "vitest run --coverage",
"deployer": "bun bundle && gh-pages -b prod -m 'build(prod): deployment' -d dist",
"lint": "eslint src __tests__",
"format": "prettier '{src,__{tests,mocks,snapshots}__}/**/*.{ts,tsx}' --write",
"fix": "bun lint --fix && bun format",
"orphans": "knip --cache"
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": true,
"bracketSameLine": true,
"trailingComma": "none",
"arrowParens": "avoid",
"experimentalTernaries": true,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"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",
"@reduxjs/toolkit": "^2.11.2",
"@twind/core": "^1.1.3",
"@twind/preset-autoprefix": "^1.0.7",
"@twind/preset-tailwind": "^1.1.4",
"@twind/with-react": "^1.1.3",
"date-fns": "^4.1.0",
"firebase": "^12.8.0",
"focus-trap": "^8.0.0",
"lucide-preact": "^0.563.0",
"nanoid": "^5.1.6",
"preact": "^10.28.3",
"react": "npm:@preact/compat@^18.3.1",
"react-dom": "npm:@preact/compat@^18.3.1",
"react-hot-toast": "^2.6.0",
"react-redux": "^9.2.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-react-jsx": "^7.28.6",
"@eslint/js": "^9.39.2",
"@preact/preset-vite": "^2.10.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/preact": "^3.2.4",
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.6",
"esbuild": "^0.27.2",
"eslint": "9.39.2",
"eslint-config-preact": "^2.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.23.2",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-promise": "^7.2.1",
"gh-pages": "^6.3.0",
"globals": "^17.3.0",
"happy-dom": "^20.4.0",
"knip": "^5.82.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.18",
"workbox-core": "^7.4.0",
"workbox-precaching": "^7.4.0"
}
}