Todo-List / package.json
jordonpeter01's picture
Add 5 files
53724f3
raw
history blame contribute delete
546 Bytes
{
"name": "todo-list",
"version": "1.0.0",
"description": "A simple todo list app using nextjs.",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"next": "^12.0.11",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^4.6.4"
},
"devDependencies": {
"@types/node": "^17.0.22",
"@types/react": "^18.1.2",
"@types/react-dom": "^18.1.11",
"tailwindcss": "^3.0.24"
}
}