package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "@bioinsilico/rcsb-saguaro-3d",
  3. "version": "0.0.8",
  4. "description": "RCSB Molstar/Saguaro Web App",
  5. "main": "build/dist/RcsbFv3DBuilder.js",
  6. "files": [
  7. "build/dist/rcsb-saguaro-3d.js",
  8. "build/dist/config.js",
  9. "build/dist/*ts"
  10. ],
  11. "scripts": {
  12. "tsc": "tsc",
  13. "tscExamples": "tsc --project ./tsconfig.examples.json",
  14. "build": "webpack --config ./webpack.config.js",
  15. "buildApp": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run copyConfig && npm run build && npm run tscExamples && npm run copyHtml && npm run buildExamples && npm run clean",
  16. "buildExamples": "webpack --config ./webpack.examples.config.js",
  17. "buildOnlyExamples": "npm run cleanAll && npm run tscExamples && npm run cpStyles && npm run copyHtml && npm run buildExamples && npm run clean",
  18. "cpStyles": "ncp src/styles build/src/styles",
  19. "copyConfig": "ncp build/src/config.js build/dist/config.js",
  20. "copyHtml": "npm run copyHtml_1 && npm run copyHtml_3",
  21. "copyHtml_1": "ncp src/examples/custom-panel/example.html build/src/examples/custom-panel/example.html",
  22. "copyHtml_3": "ncp src/examples/assembly/example.html build/src/examples/assembly/example.html",
  23. "clean": "del-cli build/src",
  24. "cleanAll": "npm run clean && del-cli build/dist",
  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.10.4",
  51. "@babel/plugin-proposal-class-properties": "^7.10.4",
  52. "@babel/preset-env": "^7.10.4",
  53. "@types/react": "^16.9.49",
  54. "@types/react-dom": "^16.9.8",
  55. "babel-loader": "^8.1.0",
  56. "concurrently": "^5.3.0",
  57. "css-loader": "^3.6.0",
  58. "del-cli": "^3.0.1",
  59. "file-loader": "^6.2.0",
  60. "mini-css-extract-plugin": "^0.9.0",
  61. "ncp": "^2.0.0",
  62. "node-sass": "^4.14.1",
  63. "react": "^16.13.1",
  64. "react-dom": "^16.13.1",
  65. "react-icons": "^3.11.0",
  66. "rxjs": "^6.6.3",
  67. "sass-loader": "^7.3.1",
  68. "style-loader": "^1.2.1",
  69. "ts-loader": "^6.2.2",
  70. "tslib": "^2.0.1",
  71. "typedoc": "^0.17.8",
  72. "typescript": "4.0.2",
  73. "webpack": "^4.44.1",
  74. "webpack-cli": "^3.3.12"
  75. },
  76. "dependencies": {
  77. "@rcsb-bioinsilico/rcsb-molstar": "^1.0.24",
  78. "@rcsb/rcsb-saguaro": "^1.0.2",
  79. "@rcsb/rcsb-saguaro-app": "^1.0.9",
  80. "molstar": "^1.2.3"
  81. },
  82. "bugs": {
  83. "url": "https://github.com/rcsb/rcsb-saguaro-3d/issues"
  84. },
  85. "homepage": "https://rcsb.github.io/rcsb-saguaro-3d",
  86. "directories": {
  87. "doc": "docs",
  88. "example": "examples"
  89. }
  90. }