| 123456789101112131415161718192021222324252627 |
- {
- "name": "gql-session",
- "version": "0.0.1",
- "description": "The objective is to give a very brief introduction to _GraphQL_ with _Apollo Server_ using a practical example.",
- "main": "app.js",
- "scripts": {
- "dev": "nodemon --watch . --ext js node app",
- "start": "node app"
- },
- "author": "Efren Yevale Varela <efren@grainchian.io>",
- "license": "ISC",
- "devDependencies": {
- "nodemon": "^2.0.15"
- },
- "dependencies": {
- "apollo-server-core": "^3.6.3",
- "apollo-server-express": "^3.6.3",
- "cors": "^2.8.5",
- "dotenv": "^16.0.0",
- "express": "^4.17.3",
- "graphql": "^16.3.0",
- "helmet": "^5.0.2",
- "jsonwebtoken": "^8.5.1",
- "jwks-rsa": "^2.0.5",
- "mongodb": "^4.4.0"
- }
- }
|