package.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "name": "@rcsb/rcsb-saguaro-3d",
  3. "version": "1.4.0",
  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. "tscExamples": "tsc --project ./tsconfig.examples.json",
  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 buildExamples && npm run buildDoc",
  14. "buildApp": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run copyConfig && npm run build && npm run clean",
  15. "packExamples": "webpack --config ./webpack.examples.config.js",
  16. "buildExamples": "npm run cleanExamples && npm run tscExamples && npm run cpStyles && npm run copyExample && npm run packExamples && npm run clean",
  17. "cpStyles": "ncp src/styles build/src/styles",
  18. "copyConfig": "ncp build/src/config.js build/dist/config.js",
  19. "copyExample": "npm run copyExample_1 && npm run copyExample_2 && npm run copyExample_3 && npm run copyExample_4 && npm run copyExample_5 && npm run copyExample_6 && npm run copyExample_7",
  20. "copyExample_1": "ncp src/examples/single-chain/index.html build/src/examples/single-chain/index.html",
  21. "copyExample_2": "ncp src/examples/structural-alignment/index.html build/src/examples/structural-alignment/index.html",
  22. "copyExample_3": "ncp src/examples/assembly/index.html build/src/examples/assembly/index.html",
  23. "copyExample_4": "ncp src/examples/multiple-chain/index.html build/src/examples/multiple-chain/index.html",
  24. "copyExample_5": "ncp src/examples/css-config/index.html build/src/examples/css-config/index.html",
  25. "copyExample_6": "ncp src/examples/external-mapping/index.html build/src/examples/external-mapping/index.html",
  26. "copyExample_7": "ncp src/examples/uniprot/index.html build/src/examples/uniprot/index.html",
  27. "buildDoc": "typedoc src/RcsbFv3D/RcsbFv3DAssembly.tsx src/RcsbFv3D/RcsbFv3DCustom.tsx && sed -i '' '/---/d' docs/index.html",
  28. "clean": "del-cli build/src",
  29. "cleanAll": "npm run clean && del-cli build/dist",
  30. "cleanExamples": "del-cli build/examples",
  31. "test": "echo \"Error: no test specified\" && exit 1"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "git://github.com/rcsb/rcsb-saguaro-3d.git"
  36. },
  37. "keywords": [
  38. "3D",
  39. "structure",
  40. "1D",
  41. "viewer",
  42. "sequence",
  43. "annotations",
  44. "gene",
  45. "protein",
  46. "PDB",
  47. "RCSB",
  48. "UniProt"
  49. ],
  50. "author": "Joan Segura Mora <joan.segura@rcsb.org>",
  51. "publishConfig": {
  52. "registry": "https://registry.npmjs.org/"
  53. },
  54. "license": "MIT",
  55. "devDependencies": {
  56. "@babel/core": "^7.17.3",
  57. "@babel/plugin-proposal-class-properties": "^7.16.7",
  58. "@babel/preset-env": "^7.16.11",
  59. "@types/react": "^17.0.39",
  60. "@types/react-dom": "^17.0.11",
  61. "@types/uniqid": "^5.3.2",
  62. "babel-loader": "^8.2.3",
  63. "buffer": "^6.0.3",
  64. "concurrently": "^7.0.0",
  65. "crypto-browserify": "^3.12.0",
  66. "css-loader": "^6.6.0",
  67. "del-cli": "^4.0.1",
  68. "file-loader": "^6.2.0",
  69. "mini-css-extract-plugin": "^2.5.3",
  70. "ncp": "^2.0.0",
  71. "path-browserify": "^1.0.1",
  72. "react": "^17.0.2",
  73. "react-dom": "^17.0.2",
  74. "react-icons": "^4.3.1",
  75. "rxjs": "^7.4.0",
  76. "sass": "^1.49.7",
  77. "sass-loader": "^12.6.0",
  78. "stream-browserify": "^3.0.0",
  79. "style-loader": "^3.3.1",
  80. "ts-loader": "^9.2.6",
  81. "tslib": "^2.3.1",
  82. "typedoc": "^0.22.11",
  83. "typedoc-plugin-missing-exports": "^0.22.6",
  84. "typescript": "^4.5.5",
  85. "uniqid": "^5.4.0",
  86. "webpack": "^5.69.0",
  87. "webpack-cli": "^4.9.1"
  88. },
  89. "dependencies": {
  90. "@rcsb/rcsb-api-tools": "^4.0.1",
  91. "@rcsb/rcsb-molstar": "^2.3.0",
  92. "@rcsb/rcsb-saguaro": "^2.0.6",
  93. "@rcsb/rcsb-saguaro-app": "^4.3.1",
  94. "molstar": "^3.6.1"
  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. }