{ "name": "@aleleba/create-node-ts-graphql-server", "version": "1.2.6", "description": "Node with Typescript and GraphQL Server", "bin": "./bin/cli.js", "main": "index.js", "scripts": { "start": "node build/index.js", "start:dev": "webpack-cli --config webpack.config.dev.ts", "start:nodemon": "nodemon build/index.js", "build": "webpack-cli --config webpack.config.ts", "lint": "eslint ./ --ext .js --ext .ts", "lint:fix": "eslint ./ --ext .js --ext .ts --fix", "test": "jest", "test:watch": "jest --watch" }, "repository": { "type": "git", "url": "git+https://github.com/aleleba/node-ts-graphql-server.git" }, "keywords": [ "node", "express", "typescript", "graphql", "server" ], "author": "Alejandro Lembke Barrientos", "license": "MIT", "bugs": { "url": "https://github.com/aleleba/node-ts-graphql-server/issues" }, "homepage": "https://github.com/aleleba/node-ts-graphql-server#readme", "dependencies": { "@graphql-tools/schema": "^9.0.13", "body-parser": "^1.20.1", "cookie-parser": "^1.4.6", "cors": "^2.8.5", "dotenv": "^16.0.3", "express": "^4.18.2", "express-graphql": "^0.12.0", "graphql": "^16.6.0", "graphql-playground-middleware-express": "^1.7.23", "graphql-subscriptions": "^2.0.0", "graphql-tools": "^8.3.15", "graphql-ws": "^5.11.2", "web-push": "^3.5.0", "ws": "^8.12.0" }, "devDependencies": { "@babel/core": "^7.20.12", "@babel/preset-env": "^7.20.2", "@babel/preset-typescript": "^7.18.6", "@babel/register": "^7.18.9", "@types/jest": "^29.4.0", "@types/node": "^18.11.18", "@types/webpack": "^5.28.0", "@types/webpack-node-externals": "^2.5.3", "@typescript-eslint/eslint-plugin": "^5.49.0", "@typescript-eslint/parser": "^5.49.0", "babel-loader": "^9.1.2", "clean-webpack-plugin": "^4.0.0", "compression-webpack-plugin": "^10.0.0", "eslint": "^8.32.0", "eslint-webpack-plugin": "^3.2.0", "jest": "^29.4.0", "nodemon": "^2.0.20", "supertest": "^6.3.3", "ts-jest": "^29.0.5", "ts-loader": "^9.4.2", "typescript": "^4.9.4", "webpack": "^5.75.0", "webpack-cli": "^5.0.1", "webpack-manifest-plugin": "^5.0.0", "webpack-node-externals": "^3.0.0", "webpack-shell-plugin-next": "^2.3.1" } }