package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "sapper-typescript-graphql-template",
  3. "description": "A template that includes Svelte with Sapper, TypeScript preprocessing, and a GraphQL server through TypeGraphQL",
  4. "keywords": [
  5. "sapper",
  6. "typegraphql",
  7. "typescript",
  8. "eslint",
  9. "svelte",
  10. "apollo-server",
  11. "graphql"
  12. ],
  13. "homepage": "https://github.com/babichjacob/sapper-typescript-graphql-template",
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/babichjacob/sapper-typescript-graphql-template.git"
  17. },
  18. "license": "MIT",
  19. "version": "2020.06.05",
  20. "scripts": {
  21. "eslint": "eslint",
  22. "eslint:fix": "eslint --fix ./*.js ./src/*.ts ./src/components/**/*.svelte ./src/graphql/**/*.ts ./src/routes/**/*.svelte ./src/routes/**/*.ts",
  23. "dev": "sapper dev",
  24. "build": "cross-env NODE_ENV=production sapper build --legacy",
  25. "prod": "npm run build",
  26. "export": "cross-env NODE_ENV=production sapper export --legacy",
  27. "start": "node __sapper__/build"
  28. },
  29. "dependencies": {
  30. "@improbable-eng/grpc-web-node-http-transport": "^0.13.0",
  31. "compression": "^1.7.4",
  32. "cookie-session": "^1.4.0",
  33. "dotenv": "^8.2.0",
  34. "express": "^4.17.1",
  35. "google-protobuf": "^3.13.0",
  36. "got": "^11.5.2",
  37. "make-error": "^1.3.6",
  38. "node-fetch": "^2.6.0",
  39. "nodemailer": "^6.4.11",
  40. "rpc_ts": "^2.1.0",
  41. "sirv": "^1.0.5",
  42. "svelte-awesome": "^2.3.0",
  43. "typeorm": "^0.2.25",
  44. "winston": "^3.3.3",
  45. "winston-transport": "^4.4.0"
  46. },
  47. "devDependencies": {
  48. "@babel/core": "^7.11.1",
  49. "@babel/plugin-syntax-dynamic-import": "^7.8.3",
  50. "@babel/plugin-transform-runtime": "^7.11.0",
  51. "@babel/preset-env": "^7.11.0",
  52. "@babel/runtime": "^7.11.2",
  53. "@fortawesome/free-brands-svg-icons": "^5.14.0",
  54. "@fortawesome/free-solid-svg-icons": "^5.14.0",
  55. "@rollup/plugin-alias": "^3.1.1",
  56. "@rollup/plugin-babel": "^5.1.0",
  57. "@rollup/plugin-commonjs": "^14.0.0",
  58. "@rollup/plugin-json": "^4.1.0",
  59. "@rollup/plugin-node-resolve": "^8.4.0",
  60. "@rollup/plugin-replace": "^2.3.3",
  61. "@rollup/plugin-typescript": "^5.0.2",
  62. "@types/compression": "^1.7.0",
  63. "@types/cookie-session": "^2.0.41",
  64. "@types/express": "^4.17.7",
  65. "@types/node-fetch": "^2.5.7",
  66. "@types/nodemailer": "^6.4.0",
  67. "@typescript-eslint/eslint-plugin": "^3.10.1",
  68. "@typescript-eslint/parser": "^3.10.1",
  69. "autoprefixer": "^9.8.6",
  70. "bufferutil": "^4.0.1",
  71. "class-validator": "^0.12.2",
  72. "cross-env": "^7.0.2",
  73. "eslint": "^7.6.0",
  74. "eslint-config-airbnb-base": "^14.2.0",
  75. "eslint-import-resolver-typescript": "^2.2.1",
  76. "eslint-plugin-import": "^2.22.0",
  77. "eslint-plugin-svelte3": "^2.7.3",
  78. "postcss": "^7.0.32",
  79. "postcss-import": "^12.0.1",
  80. "postcss-load-config": "^2.1.0",
  81. "reflect-metadata": "^0.1.13",
  82. "rollup": "^2.26.7",
  83. "rollup-plugin-svelte": "^5.2.3",
  84. "rollup-plugin-terser": "^7.0.0",
  85. "sapper": "^0.28.0",
  86. "svelte": "^3.24.1",
  87. "svelte-preprocess": "^4.0.10",
  88. "tailwindcss": "^1.6.2",
  89. "tslib": "^2.0.1",
  90. "typescript": "^3.9.7",
  91. "utf-8-validate": "^5.0.2"
  92. }
  93. }