nope/package.json

81 lines
2.3 KiB
JSON
Raw Normal View History

2020-08-19 06:36:59 +00:00
{
"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",
"doc": "npx jsdoc ./lib -r -c jsdoc.json",
2020-08-19 06:36:59 +00:00
"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": {
2020-09-10 16:21:01 +00:00
"@grpc/proto-loader": "^0.5.5",
2020-09-02 05:49:53 +00:00
"@rjsf/bootstrap-4": "^2.3.0",
"@rjsf/core": "^2.3.0",
2020-09-10 16:21:01 +00:00
"ajv": "^6.12.4",
"amqplib": "^0.6.0",
2020-08-25 22:11:26 +00:00
"arangojs": "^7.0.1",
2020-08-19 06:36:59 +00:00
"bootstrap": "^4.5.2",
"cors": "^2.8.5",
"express": "^4.17.1",
2020-09-08 08:46:52 +00:00
"express-openapi": "^7.0.1",
2020-09-10 16:21:01 +00:00
"grpc": "^1.24.3",
"handlebars": "^4.7.6",
2020-08-25 22:11:26 +00:00
"inquirer": "^7.3.3",
"inquirer-fuzzy-path": "^2.3.0",
2020-08-19 06:36:59 +00:00
"inversify": "^5.0.1",
"lodash": "^4.17.20",
2020-09-08 14:59:06 +00:00
"mathjs": "^7.2.0",
"mqtt": "^4.2.1",
2020-08-25 22:11:26 +00:00
"mqtt-pattern": "^1.2.0",
2020-09-08 08:46:52 +00:00
"next": "^9.5.3",
2020-08-25 22:11:26 +00:00
"node-ads": "^1.5.1",
2020-08-19 06:36:59 +00:00
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
2020-08-19 22:14:07 +00:00
"react-dom": "^16.13.1",
2020-09-07 05:21:23 +00:00
"react-icons": "^3.11.0",
2020-08-25 22:11:26 +00:00
"reflect-metadata": "^0.1.13",
2020-09-08 08:46:52 +00:00
"rxjs": "^6.6.3",
2020-08-21 16:38:21 +00:00
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
2020-09-08 08:46:52 +00:00
"swagger-ui-react": "^3.32.5",
"ts-morph": "^8.1.0",
2020-08-25 22:11:26 +00:00
"uuid": "^8.3.0",
"winston": "^3.3.3"
2020-08-19 06:36:59 +00:00
},
"devDependencies": {
2020-09-08 08:46:52 +00:00
"@openapitools/openapi-generator-cli": "^1.0.18-4.3.1",
2020-09-12 20:23:55 +00:00
"@types/amqplib": "^0.5.13",
2020-09-08 08:46:52 +00:00
"@types/express": "^4.17.8",
"@types/lodash": "^4.14.161",
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.33",
"better-docs": "^2.3.2",
"jsdocs": "^1.0.0",
2020-09-08 08:46:52 +00:00
"npm-check-updates": "^8.1.1",
"openapi-typescript-codegen": "^0.4.11",
"typescript": "^4.0.2",
"typescript-json-schema": "^0.43.0"
2020-08-19 06:36:59 +00:00
}
}