feat(examples): add next

This commit is contained in:
moklick
2023-10-10 13:19:37 +02:00
parent d062214536
commit 93a180b19d
14 changed files with 3993 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"name": "next-xyflow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@xyflow/react": "workspace:^",
"next": "13.5.4",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"typescript": "^5"
}
}