package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "orion",
  3. "version": "1.0.0",
  4. "description": "Video view count service for Joystream",
  5. "license": "ISC",
  6. "directories": {
  7. "src": "src"
  8. },
  9. "files": [
  10. "src"
  11. ],
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/Joystream/joystream.git"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/Joystream/joystream/issues"
  18. },
  19. "scripts": {
  20. "clean": "rm -rf dist",
  21. "dev": "NODE_ENV=development ts-node-dev --respawn src/main.ts",
  22. "build": "yarn clean && yarn tsc -p tsconfig.build.json",
  23. "start": "node dist/main.js",
  24. "lint": "eslint . --ext .ts",
  25. "test": "jest"
  26. },
  27. "lint-staged": {
  28. "*.{ts,json}": [
  29. "prettier --write"
  30. ]
  31. },
  32. "dependencies": {
  33. "@graphql-tools/graphql-file-loader": "^7.3.3",
  34. "@graphql-tools/load": "^7.4.1",
  35. "@graphql-tools/schema": "^8.3.1",
  36. "@graphql-tools/stitch": "^8.4.1",
  37. "@graphql-tools/url-loader": "^7.5.2",
  38. "@typegoose/auto-increment": "^1.0.0",
  39. "@typegoose/typegoose": "^9.1.0",
  40. "apollo-server-core": "^3.4.0",
  41. "apollo-server-express": "^3.4.0",
  42. "class-validator": "^0.13.1",
  43. "date-fns": "^2.25.0",
  44. "dotenv": "^10.0.0",
  45. "express": "^4.17.1",
  46. "graphql": "15",
  47. "lodash": "^4.17.21",
  48. "mongodb": "^4.1.3",
  49. "mongoose": "^6.0.10",
  50. "reflect-metadata": "^0.1.13",
  51. "type-graphql": "^1.1.1"
  52. },
  53. "devDependencies": {
  54. "@joystream/eslint-config": "^1.0.0",
  55. "@joystream/prettier-config": "^1.0.0",
  56. "@shelf/jest-mongodb": "^2.1.0",
  57. "@types/express": "^4.17.13",
  58. "@types/jest": "^27.0.2",
  59. "@types/lodash": "^4.14.178",
  60. "@types/node": "^14.11.2",
  61. "@typescript-eslint/eslint-plugin": "^5.0.0",
  62. "@typescript-eslint/parser": "^5.0.0",
  63. "eslint": "^7.32.0",
  64. "eslint-plugin-jest": "^25.2.1",
  65. "husky": "^4.3.0",
  66. "jest": "^27.2.5",
  67. "lint-staged": "^10.4.0",
  68. "prettier": "^2.4.1",
  69. "ts-jest": "^27.0.5",
  70. "ts-node": "^10.3.0",
  71. "ts-node-dev": "^1.1.8",
  72. "typescript": "^4.4.4"
  73. },
  74. "resolutions": {
  75. "@typescript-eslint/eslint-plugin": "^5.0.0",
  76. "@typescript-eslint/parser": "^5.0.0",
  77. "@types/serve-static": "1.13.10"
  78. },
  79. "engines": {
  80. "node": "^16.13.1"
  81. }
  82. }