fa
Some checks failed
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-26 21:29:54 +08:00
commit 2c4549ad79
85 changed files with 14664 additions and 0 deletions

58
package.json Normal file
View File

@@ -0,0 +1,58 @@
{
"name": "stark-todo-list",
"version": "1.0.0",
"description": "A minimalist, modern, and highly polished Todo List application built with Next.js",
"author": "STARK Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/stark-todo-list.git"
},
"keywords": [
"todo",
"todolist",
"nextjs",
"react",
"typescript",
"tailwindcss",
"framer-motion",
"task-management",
"productivity"
],
"bugs": {
"url": "https://github.com/yourusername/stark-todo-list/issues"
},
"homepage": "https://github.com/yourusername/stark-todo-list#readme",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"date-fns": "^4.1.0",
"framer-motion": "^12.23.26",
"lucide-react": "^0.468.0",
"next": "15.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.7.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.18",
"eslint": "^9",
"eslint-config-next": "15.1.2",
"postcss": "^8",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}