nope/package.json
2022-01-03 17:30:14 +01:00

146 lines
4.5 KiB
JSON

{
"name": "nope",
"version": "0.9.7",
"description": "Nodejs Backend, combining nextjs with openapi",
"main": "dist/lib/index.browser.js",
"files": [
"dist",
"node_modules",
"README.md",
"package.json"
],
"bin": {
"nope-js": "./bin/nope"
},
"scripts": {
"test": "mocha",
"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",
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "tsc && tsc -p tsconfigBackend.json",
"start": "next start",
"prettier-format": "run-script-os",
"prettier-format:win32": "prettier \"./lib/**/*.ts\" --write",
"prettier-format:darwin:linux": "prettier 'lib/**/*.ts' --write",
"prettier-format:default": "prettier 'lib/**/*.ts' --write",
"prettier-watch": "run-script-os",
"prettier-watch:win32": "onchange \"lib/**/*.ts\" -- prettier --write {{changed}}",
"prettier-watch:darwin:linux": "onchange 'lib/**/*.ts' -- prettier --write {{changed}}",
"prettier-watch:default": "onchange 'lib/**/*.ts' -- prettier --write {{changed}}",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"mocha": {
"reporter": "spec",
"spec": "dist/**/*.spec.js"
},
"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": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@grpc/proto-loader": "^0.6.4",
"@openapitools/openapi-generator-cli": "^2.4.1",
"@rjsf/bootstrap-4": "^3.1.0",
"@rjsf/core": "^3.1.0",
"@zeit/next-css": "^1.0.1",
"ace-builds": "^1.4.12",
"aedes": "^0.46.1",
"ajv": "^8.6.2",
"amqplib": "^0.8.0",
"arangojs": "^7.5.0",
"async": "^3.2.1",
"asyncjs": "0.0.13",
"bootstrap": "^5.1.0",
"bootswatch": "^5.1.0",
"chroma-js": "^2.1.2",
"comment-parser": "^1.2.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-openapi": "^9.3.0",
"gojs": "^2.1.49",
"gojs-react": "^1.1.0",
"handlebars": "^4.7.7",
"inquirer": "^8.1.2",
"inquirer-fuzzy-path": "^2.3.0",
"inquirer-search-list": "^1.2.6",
"inversify": "^5.1.1",
"js-logger": "^1.6.1",
"jsdocs": "^1.0.0",
"lodash": "^4.17.21",
"mathjs": "^9.4.4",
"mqtt": "^4.2.8",
"mqtt-pattern": "^1.2.0",
"next": "^11.1.2",
"node-ads": "^1.5.1",
"node-rest-client": "^3.1.0",
"node-windows": "^1.0.0-beta.5",
"node-wol": "^0.1.1",
"npm": "^7.21.1",
"npx": "^10.2.2",
"openapi-typescript-codegen": "^0.9.3",
"rctx-contextmenu": "^1.3.5",
"react": "^17.0.2",
"react-ace": "^9.4.3",
"react-bootstrap": "^1.6.1",
"react-dom": "^17.0.2",
"react-grid-layout": "^1.3.0",
"react-icons": "^4.2.0",
"react-toastify": "^8.0.2",
"reflect-metadata": "^0.1.13",
"run-script-os": "^1.1.6",
"rxjs": "^7.3.0",
"simple-git": "^2.45.0",
"simple-undo": "^1.0.2",
"socket.io": "^4.2.0",
"socket.io-client": "^4.2.0",
"swagger-ts-client": "^0.9.6",
"swagger-ui-react": "^3.52.0",
"tinkerforge": "^2.1.33",
"ts-morph": "^12.0.0",
"typescript-json-schema": "^0.50.1",
"uuid": "^8.3.2",
"websocket-stream": "^5.5.2"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/chai": "^4.2.22",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.172",
"@types/node": "^16.7.10",
"@types/react": "^17.0.19",
"@types/socket.io": "^3.0.1",
"@types/socket.io-client": "^1.4.36",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.4",
"dts-bundle": "^0.7.3",
"dts-bundle-webpack": "^1.0.2",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"npm-check-updates": "^11.8.4",
"onchange": "^7.1.0",
"prettier": "2.4.1",
"typescript": "^4.5.2",
"webpack": "^4.46.0",
"webpack-cli": "^4.8.0"
}
}