nope/package.json
Martin Karkowski d325c07c6c Fixing Open-Api Creation.
Provinding Swagger UI.
2020-08-25 10:21:55 +02:00

60 lines
1.7 KiB
JSON

{
"name": "nope-backend",
"version": "1.0.0",
"description": "Nodejs Backend, combining nextjs with openapi",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate-frontend-interfaces": "openapi --input http://localhost:3000/api/api-docs --output ./pages/interfaces",
"compile-backend": "tsc -p ./tsconfigBackend.json",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anti-held-333/nope-backend.git"
},
"keywords": [
"nextjs",
"openapi"
],
"author": "anti-held-333",
"license": "MIT",
"bugs": {
"url": "https://github.com/anti-held-333/nope-backend/issues"
},
"homepage": "https://github.com/anti-held-333/nope-backend#readme",
"dependencies": {
"bootstrap": "^4.5.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-openapi": "^7.0.0",
"handlebars": "^4.7.6",
"inversify": "^5.0.1",
"lodash": "^4.17.20",
"next": "^9.5.2",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"rxjs": "^6.6.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"swagger-ui-react": "^3.32.4",
"ts-morph": "^7.3.0",
"typescript-json-schema": "^0.43.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^1.0.15-4.3.1",
"@types/express": "^4.17.7",
"@types/lodash": "^4.14.159",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.33",
"openapi-typescript-codegen": "^0.4.10",
"typescript": "^3.9.7"
}
}