package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "name": "@rcsb/rcsb-saguaro-3d",
  3. "version": "2.4.0-data-provider.16",
  4. "description": "RCSB Molstar/Saguaro Web App",
  5. "main": "build/dist/app.js",
  6. "files": [
  7. "build/dist",
  8. "lib"
  9. ],
  10. "scripts": {
  11. "devServer": "webpack-dev-server --config webpack.server.dev.config.js",
  12. "tsc": "tsc --incremental",
  13. "build": "webpack --config ./webpack.config.js",
  14. "buildAll": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run mkDist && npm run copyConfig && npm run copyDef && npm run build && npm run buildDoc",
  15. "buildApp": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run mkDist && npm run copyConfig && npm run copyDef && npm run build",
  16. "cpStyles": "ncp src/styles lib/styles",
  17. "mkDist": "mkdirp build/dist",
  18. "copyConfig": "ncp lib/config.js build/dist/config.js",
  19. "copyDef": "ncp lib/app.d.ts build/dist/app.d.ts",
  20. "buildDoc": "typedoc --excludeExternals --externalPattern \"**/node_modules/**\" src/RcsbFv3D/RcsbFv3DAssembly.tsx src/RcsbFv3D/RcsbFv3DUniprot.tsx src/RcsbFv3D/RcsbFv3DSequenceIdentity.tsx src/RcsbFv3D/RcsbFv3DCustom.tsx && sed -i '' '/---/d' docs/index.html",
  21. "clean": "del-cli lib",
  22. "cleanAll": "npm run clean && del-cli build/dist",
  23. "publishApp": "npm publish --tag data-provider",
  24. "test": "echo \"Error: no test specified\" && exit 1"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/rcsb/rcsb-saguaro-3d.git"
  29. },
  30. "keywords": [
  31. "3D",
  32. "structure",
  33. "1D",
  34. "viewer",
  35. "sequence",
  36. "annotations",
  37. "gene",
  38. "protein",
  39. "PDB",
  40. "RCSB",
  41. "UniProt"
  42. ],
  43. "author": "Joan Segura Mora <joan.segura@rcsb.org>",
  44. "publishConfig": {
  45. "registry": "https://registry.npmjs.org/"
  46. },
  47. "license": "MIT",
  48. "devDependencies": {
  49. "@babel/core": "^7.18.10",
  50. "@babel/plugin-proposal-class-properties": "^7.18.6",
  51. "@babel/preset-env": "^7.18.10",
  52. "@types/d3-selection": "^3.0.3",
  53. "@types/d3-zoom": "^3.0.1",
  54. "@types/lodash": "^4.14.191",
  55. "@types/react": "^18.0.15",
  56. "@types/react-dom": "^18.0.6",
  57. "@types/uniqid": "^5.3.2",
  58. "babel-loader": "^8.2.5",
  59. "buffer": "^6.0.3",
  60. "concurrently": "^7.3.0",
  61. "crypto-browserify": "^3.12.0",
  62. "css-loader": "^6.6.0",
  63. "del-cli": "^5.0.0",
  64. "file-loader": "^6.2.0",
  65. "html-webpack-plugin": "^5.5.0",
  66. "lodash": "^4.17.21",
  67. "mini-css-extract-plugin": "^2.6.1",
  68. "mkdirp": "^2.1.5",
  69. "ncp": "^2.0.0",
  70. "path-browserify": "^1.0.1",
  71. "react": "^18.1.0",
  72. "react-dom": "^18.1.0",
  73. "react-icons": "^4.4.0",
  74. "rxjs": "^7.5.6",
  75. "sass": "^1.54.0",
  76. "sass-loader": "^13.0.2",
  77. "stream-browserify": "^3.0.0",
  78. "style-loader": "^3.3.1",
  79. "ts-loader": "^9.3.1",
  80. "tslib": "^2.4.0",
  81. "typedoc": "^0.23.20",
  82. "typedoc-plugin-missing-exports": "^1.0.0",
  83. "typescript": "^4.7.4",
  84. "uniqid": "^5.4.0",
  85. "webpack": "^5.73.0",
  86. "webpack-cli": "^4.10.0",
  87. "webpack-dev-server": "^4.9.3"
  88. },
  89. "dependencies": {
  90. "@rcsb/rcsb-api-tools": "^4.1.1",
  91. "@rcsb/rcsb-molstar": "^2.5.11",
  92. "@rcsb/rcsb-saguaro": "^2.5.8",
  93. "@rcsb/rcsb-saguaro-app": "^5.0.0-data-provider.14",
  94. "molstar": "^3.31.4"
  95. },
  96. "bugs": {
  97. "url": "https://github.com/rcsb/rcsb-saguaro-3d/issues"
  98. },
  99. "homepage": "https://rcsb.github.io/rcsb-saguaro-3d",
  100. "directories": {
  101. "doc": "docs",
  102. "example": "cdn-examples"
  103. }
  104. }