-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.73 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
{
"name": "what-to-do",
"version": "2.0.0",
"browserslist": "> 0.5%, last 2 versions, not dead",
"type": "module",
"description": "A simple todo app for managing your tasks",
"scripts": {
"build": "pnpm clean && vite build",
"clean": "rm -rf dist",
"dev": "vite",
"preview": "vite preview",
"start": "vite",
"lint": "eslint src",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=22"
},
"author": "Mark Murray <mark.murray.ie@gmail.com> (https://markmurray.co)",
"bugs": {
"url": "https://github.com/markmur/what-todo/issues"
},
"dependencies": {
"@meronex/icons": "^4.0.0",
"classnames": "^2.2.6",
"framer-motion": "^12.38.0",
"lodash-es": "^4.17.20",
"object-sizeof": "^2.6.5",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-textarea-autosize": "^8.3.1",
"react-tooltip": "^5.30.0",
"tailwindcss": "^4.2.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/lodash-es": "^4.17.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^7.0.1",
"happy-dom": "^20.8.9",
"prettier": "^3.0.3",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}