-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.22 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
{
"name": "todo-list",
"version": "1.0.2",
"private": true,
"packageManager": "[email protected]",
"description": "A user-friendly and responsive Todo List web application developed using React and Vite",
"author": "Tuan Duc Tran <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tuanductran/todo-list-vite.git"
},
"bugs": {
"url": "https://github.com/tuanductran/todo-list-vite/issues"
},
"keywords": [
"todo",
"react",
"vite",
"tailwind"
],
"scripts": {
"build": "vite build",
"build:all": "pnpm build:tailwind && pnpm build",
"build:tailwind": "pnpm postcss css/app.css -o css/build.css --verbose",
"dev": "concurrently \"pnpm dev:layout\" \"pnpm dev:tailwind\"",
"dev:layout": "vite",
"dev:tailwind": "pnpm postcss css/app.css -o css/build.css --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preinstall": "npx only-allow pnpm",
"preview": "vite preview",
"type:check": "tsc --noEmit"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@hookform/resolvers": "^3.9.1",
"@vercel/analytics": "^1.4.0",
"@vercel/speed-insights": "^1.1.0",
"clsx": "^2.1.1",
"dompurify": "^3.2.0",
"idb": "^8.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.2",
"sonner": "^1.7.0",
"swr": "^2.2.5",
"tailwindcss": "^3.4.15",
"uuid": "^11.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"@eslint-react/eslint-plugin": "^1.16.1",
"@tailwindcss/forms": "^0.5.9",
"@types/dompurify": "^3.0.5",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"eslint": "9.16.0",
"eslint-plugin-command": "^0.2.6",
"eslint-plugin-format": "^0.1.3",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-lightningcss": "^1.0.1",
"turbo": "^2.3.3",
"typescript": "^5.6.3",
"vite": "6.0.3"
}
}