dappconnect-sdks/examples/with-next/package.json

28 lines
544 B
JSON
Raw Normal View History

{
"name": "with-next",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rimraf node_modules .next"
},
"dependencies": {
"@status-im/react": "^0.1.1",
"next": "12.3.1",
2023-03-13 21:24:39 +00:00
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
2023-03-13 21:24:39 +00:00
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
2023-03-13 21:10:18 +00:00
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16"
}
}