mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-17 13:07:32 +02:00
* Add basic flask web server * Use ubuntu as docker base image for frontend docker build * Got web frontend server running inside sqkserver * Got client request throught flask working * Refactor makerequest function in frontend * Support sending request to flask server * Use request and reply in flask for set profile sharing method * Handle request object in flask for get followed squeaks route * Use flask endpoint for lnd getinfo * Use flask endpoint for walletbalance * Use flask for gettransactions endpoint * Use flask endpoint for lnd methods * Add set profile properties methods to flask * Move request, response protobuf to handler class * Move request, reply inside handler for get signing profiles * Move request, reply to handler for get contact profiles * Move request, reply to handler for get squeak profile * Move request reply for get profile by address to handler * Move request reply to handler for set profile attributes * Move request reply to handler for delete profile * Move request reply for make squeak to handler * Move request reply to handler for get squeak display * Move request reply to get address squeak displays * Move request reply to handler for ancestor squeaks * Move request reply to handler for delete squeak * Move request reply to handler for create peer and get peer * Move request reply to handler for peer set attributes * Move request reply to handler for more methods * Move request reply to handler for another method * Move request reply to handler for more methods * Move more request reply to handler * Move request reply to handler for all methods * Remove message conversion helper methods from servicer class * Remove duplicate protobuf conversion functions * Fix flask handling of requests * Remove old protobuf conversion methods in comments * Use helper method to simplify web server routes functions
59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "squeak-node-frontend",
|
|
"version": "1.1.0",
|
|
"private": true,
|
|
"resolutions": {
|
|
"websocket-extensions": "^0.1.4"
|
|
},
|
|
"dependencies": {
|
|
"@grpc/grpc-js": "~1.0.5",
|
|
"@grpc/proto-loader": "~0.5.4",
|
|
"@material-ui/core": "^4.3.0",
|
|
"@material-ui/icons": "^4.2.1",
|
|
"@material-ui/styles": "^4.3.0",
|
|
"apexcharts": "^3.8.3",
|
|
"async": "~1.5.2",
|
|
"classnames": "^2.2.6",
|
|
"font-awesome": "^4.7.0",
|
|
"google-protobuf": "~3.12.0",
|
|
"grpc-web": "~1.2.0",
|
|
"moment": "^2.27.0",
|
|
"mui-datatables": "^2.6.4",
|
|
"protobufjs": "^6.10.1",
|
|
"react": "^16.8.6",
|
|
"react-apexcharts": "^1.3.3",
|
|
"react-dom": "^16.8.6",
|
|
"react-google-maps": "^9.4.5",
|
|
"react-router-dom": "^5.0.1",
|
|
"react-scripts": "^3.4.1",
|
|
"react-syntax-highlighter": "^11.0.2",
|
|
"react-toastify": "^5.3.2",
|
|
"recharts": "^1.6.2",
|
|
"tinycolor2": "^1.4.1"
|
|
},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "react-app"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^1.19.1",
|
|
"terser": "^3.14.1"
|
|
}
|
|
}
|