You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.0KB

  1. {
  2. "name": "graphql-pizza-demo",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "build/index.js",
  6. "dependencies": {
  7. "@types/uuid": "^8.0.0",
  8. "apollo-server": "^2.15.1",
  9. "graphql": "^15.3.0",
  10. "typescript": "^3.9.6",
  11. "uuid": "^8.2.0"
  12. },
  13. "devDependencies": {
  14. "@graphql-codegen/cli": "1.16.3",
  15. "@graphql-codegen/introspection": "1.16.3",
  16. "@graphql-codegen/typescript": "^1.16.3",
  17. "@graphql-codegen/typescript-graphql-request": "^1.16.3",
  18. "@graphql-codegen/typescript-operations": "^1.16.3",
  19. "@graphql-codegen/typescript-resolvers": "1.16.3",
  20. "@types/node": "^14.0.20",
  21. "nodemon": "^2.0.4",
  22. "rimraf": "^3.0.2",
  23. "ts-node": "^8.10.2"
  24. },
  25. "scripts": {
  26. "prebuild": "npm run generate",
  27. "prestart": "npm run generate",
  28. "test": "echo \"Error: no test specified\" && exit 1",
  29. "generate": "graphql-codegen --config codegen.yml",
  30. "start": "nodemon",
  31. "start:live": "npm run build && node build/index.js",
  32. "build": "rimraf ./build && tsc"
  33. },
  34. "author": "",
  35. "license": "ISC"
  36. }