package.json 1.1 KB

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "@keystonejs/example-projects-starter",
  3. "description": "An example KeystoneJS project with a User list and Authentication.",
  4. "private": true,
  5. "version": "5.0.7",
  6. "author": "The KeystoneJS Development Team",
  7. "repository": "https://github.com/keystonejs/keystone/tree/master/packages/create-keystone-app/example-projects/starter",
  8. "homepage": "https://github.com/keystonejs/keystone",
  9. "license": "MIT",
  10. "engines": {
  11. "node": ">=10.0.0"
  12. },
  13. "scripts": {
  14. "dev": "cross-env NODE_ENV=development DISABLE_LOGGING=false keystone dev",
  15. "build": "cross-env NODE_ENV=production keystone build",
  16. "start": "cross-env NODE_ENV=production DISABLE_LOGGING=false keystone start",
  17. "create-tables": "cross-env CREATE_TABLES=true keystone create-tables"
  18. },
  19. "dependencies": {
  20. "@keystonejs/adapter-knex": "^10.0.1",
  21. "@keystonejs/app-admin-ui": "^6.0.0",
  22. "@keystonejs/app-graphql": "^5.1.7",
  23. "@keystonejs/auth-password": "^5.1.7",
  24. "@keystonejs/fields": "^10.0.0",
  25. "@keystonejs/keystone": "^9.0.0",
  26. "cross-env": "^7.0.0"
  27. }
  28. }