package.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. {
  2. "name": "@rcsb/rcsb-saguaro-3d",
  3. "version": "3.0.18",
  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. "buildTm": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run mkDist && webpack --config ./webpack.tm-saguaro.config.js",
  15. "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",
  16. "buildApp": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run mkDist && npm run copyConfig && npm run copyDef && npm run build",
  17. "cpStyles": "ncp src/styles lib/styles",
  18. "mkDist": "mkdirp build/dist",
  19. "copyConfig": "ncp lib/config.js build/dist/config.js",
  20. "copyDef": "ncp lib/app.d.ts build/dist/app.d.ts",
  21. "buildDoc": "typedoc --excludeExternals --externalPattern \"**/node_modules/**\" --plugin typedoc-plugin-missing-exports src/RcsbFv3D/RcsbFv3DAssembly.tsx src/RcsbFv3D/RcsbFv3DUniprot.tsx src/RcsbFv3D/RcsbFv3DSequenceIdentity.tsx src/RcsbFv3D/RcsbFv3DCustom.tsx && sed -i '' '/---/d' docs/index.html",
  22. "clean": "del-cli lib",
  23. "cleanAll": "npm run clean && del-cli build/dist",
  24. "publishApp": "npm publish",
  25. "test": "echo \"Error: no test specified\" && exit 1"
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "git://github.com/rcsb/rcsb-saguaro-3d.git"
  30. },
  31. "keywords": [
  32. "3D",
  33. "structure",
  34. "1D",
  35. "viewer",
  36. "sequence",
  37. "annotations",
  38. "gene",
  39. "protein",
  40. "PDB",
  41. "RCSB",
  42. "UniProt"
  43. ],
  44. "author": "Joan Segura Mora <joan.segura@rcsb.org>",
  45. "publishConfig": {
  46. "registry": "https://registry.npmjs.org/"
  47. },
  48. "license": "MIT",
  49. "devDependencies": {
  50. "@babel/core": "^7.22.17",
  51. "@babel/plugin-proposal-class-properties": "^7.18.6",
  52. "@babel/preset-env": "^7.22.15",
  53. "@types/d3-selection": "^3.0.6",
  54. "@types/d3-zoom": "^3.0.4",
  55. "@types/lodash": "^4.14.198",
  56. "@types/react": "^18.2.21",
  57. "@types/react-dom": "^18.2.6",
  58. "@types/uniqid": "^5.3.2",
  59. "babel-loader": "^9.1.3",
  60. "buffer": "^6.0.3",
  61. "concurrently": "^8.2.1",
  62. "crypto-browserify": "^3.12.0",
  63. "css-loader": "^6.8.1",
  64. "del-cli": "^5.1.0",
  65. "file-loader": "^6.2.0",
  66. "html-webpack-plugin": "^5.5.3",
  67. "lodash": "^4.17.21",
  68. "mini-css-extract-plugin": "^2.7.6",
  69. "mkdirp": "^3.0.1",
  70. "ncp": "^2.0.0",
  71. "path-browserify": "^1.0.1",
  72. "react": "^18.1.0",
  73. "react-dom": "^18.1.0",
  74. "react-icons": "^4.11.0",
  75. "rxjs": "^7.5.6",
  76. "sass": "^1.66.1",
  77. "sass-loader": "^13.3.2",
  78. "stream-browserify": "^3.0.0",
  79. "style-loader": "^3.3.3",
  80. "ts-loader": "^9.4.4",
  81. "tslib": "^2.6.2",
  82. "typedoc": "^0.25.1",
  83. "typedoc-plugin-missing-exports": "^2.1.0",
  84. "typescript": "^5.2.2",
  85. "uniqid": "^5.4.0",
  86. "webpack": "^5.88.2",
  87. "webpack-cli": "^5.1.4",
  88. "webpack-dev-server": "^4.15.1"
  89. },
  90. "dependencies": {
  91. "@rcsb/rcsb-api-tools": "^4.1.13",
  92. "@rcsb/rcsb-saguaro": "^2.5.13",
  93. "@rcsb/rcsb-saguaro-app": "^5.1.5"
  94. },
  95. "peerDependencies": {
  96. "@rcsb/rcsb-molstar": "^2.8.0",
  97. "molstar": "^3.40.1"
  98. },
  99. "bugs": {
  100. "url": "https://github.com/rcsb/rcsb-saguaro-3d/issues"
  101. },
  102. "homepage": "https://rcsb.github.io/rcsb-saguaro-3d",
  103. "directories": {
  104. "doc": "docs",
  105. "example": "cdn-examples"
  106. }
  107. }