package.json 2.8 KB

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