package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "name": "@rcsb/rcsb-saguaro-3d",
  3. "version": "1.3.3",
  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",
  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. "buildDoc": "typedoc src/RcsbFv3D/RcsbFv3DAssembly.tsx src/RcsbFv3D/RcsbFv3DCustom.tsx && sed -i '' '/---/d' docs/index.html",
  27. "clean": "del-cli build/src",
  28. "cleanAll": "npm run clean && del-cli build/dist",
  29. "cleanExamples": "del-cli build/examples",
  30. "test": "echo \"Error: no test specified\" && exit 1"
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "git://github.com/rcsb/rcsb-saguaro-3d.git"
  35. },
  36. "keywords": [
  37. "3D",
  38. "structure",
  39. "1D",
  40. "viewer",
  41. "sequence",
  42. "annotations",
  43. "gene",
  44. "protein",
  45. "PDB",
  46. "RCSB",
  47. "UniProt"
  48. ],
  49. "author": "Joan Segura Mora <joan.segura@rcsb.org>",
  50. "publishConfig": {
  51. "registry": "https://registry.npmjs.org/"
  52. },
  53. "license": "MIT",
  54. "devDependencies": {
  55. "@babel/core": "^7.17.3",
  56. "@babel/plugin-proposal-class-properties": "^7.16.7",
  57. "@babel/preset-env": "^7.16.11",
  58. "@types/react": "^17.0.37",
  59. "@types/react-dom": "^17.0.11",
  60. "babel-loader": "^8.2.3",
  61. "buffer": "^6.0.3",
  62. "concurrently": "^7.0.0",
  63. "crypto-browserify": "^3.12.0",
  64. "css-loader": "^6.6.0",
  65. "del-cli": "^4.0.1",
  66. "file-loader": "^6.2.0",
  67. "http-server": "^14.1.0",
  68. "mini-css-extract-plugin": "^2.5.3",
  69. "ncp": "^2.0.0",
  70. "path-browserify": "^1.0.1",
  71. "react": "^17.0.2",
  72. "react-dom": "^17.0.2",
  73. "react-icons": "^4.3.1",
  74. "rxjs": "^7.4.0",
  75. "sass": "^1.49.7",
  76. "sass-loader": "^12.6.0",
  77. "stream-browserify": "^3.0.0",
  78. "style-loader": "^3.3.1",
  79. "ts-loader": "^9.2.6",
  80. "tslib": "^2.3.1",
  81. "typedoc": "^0.22.11",
  82. "typedoc-plugin-missing-exports": "^0.22.6",
  83. "typescript": "^4.5.5",
  84. "webpack": "^5.69.0",
  85. "webpack-cli": "^4.9.1"
  86. },
  87. "dependencies": {
  88. "@rcsb/rcsb-api-tools": "^3.0.0",
  89. "@rcsb/rcsb-molstar": "^2.2.1",
  90. "@rcsb/rcsb-saguaro": "^2.0.1",
  91. "@rcsb/rcsb-saguaro-app": "^4.0.6",
  92. "molstar": "^3.3.1"
  93. },
  94. "bugs": {
  95. "url": "https://github.com/rcsb/rcsb-saguaro-3d/issues"
  96. },
  97. "homepage": "https://rcsb.github.io/rcsb-saguaro-3d",
  98. "directories": {
  99. "doc": "docs",
  100. "example": "cdn-examples"
  101. }
  102. }