package.json 3.1 KB

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