fry
0339acaaba
Add the basic setup files for a nextjs interface. Need to set up the board and all that. Should be able to get going with `docker-compose up ui` then you'll see a webpage that's just an input on localhost:3000 Co-authored-by: David Frymoyer <david.frymoyer@gmail.com> Reviewed-on: #1 Co-authored-by: fry <david.frymoyer@gmail.com> Co-committed-by: fry <david.frymoyer@gmail.com>
24 lines
452 B
JSON
24 lines
452 B
JSON
{
|
|
"name": "ui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"next": "12.1.0",
|
|
"react": "17.0.2",
|
|
"react-dom": "17.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "17.0.21",
|
|
"@types/react": "17.0.39",
|
|
"eslint": "8.10.0",
|
|
"eslint-config-next": "12.1.0",
|
|
"typescript": "4.6.2"
|
|
}
|
|
}
|