package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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. "@babel/core": "^7.11.6",
  21. "@keystonejs/adapter-knex": "^12.0.1",
  22. "@keystonejs/app-admin-ui": "^7.3.8",
  23. "@keystonejs/app-graphql": "^6.1.3",
  24. "@keystonejs/app-static": "^5.1.3",
  25. "@keystonejs/auth-password": "^5.1.16",
  26. "@keystonejs/fields": "^19.1.0",
  27. "@keystonejs/fields-auto-increment": "^8.0.0",
  28. "@keystonejs/keystone": "^17.1.0",
  29. "cross-env": "^7.0.2",
  30. "npm-check-updates": "^9.0.4"
  31. }
  32. }