package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "@rcsb/rcsb-saguaro-3d",
  3. "version": "0.0.24",
  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 --incremental",
  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. "buildOnlyApp": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run copyConfig && npm run build && npm run clean",
  17. "buildExamples": "webpack --config ./webpack.examples.config.js",
  18. "buildOnlyExamples": "npm run cleanAll && npm run tscExamples && npm run cpStyles && npm run copyHtml && npm run buildExamples && npm run clean",
  19. "cpStyles": "ncp src/styles build/src/styles",
  20. "copyConfig": "ncp build/src/config.js build/dist/config.js",
  21. "copyHtml": "npm run copyHtml_1 && npm run copyHtml_3",
  22. "copyHtml_1": "ncp src/examples/custom-panel/example.html build/src/examples/custom-panel/example.html",
  23. "copyHtml_3": "ncp src/examples/assembly/example.html build/src/examples/assembly/example.html",
  24. "clean": "del-cli build/src",
  25. "cleanAll": "npm run clean && del-cli build/dist",
  26. "test": "echo \"Error: no test specified\" && exit 1"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git://github.com/rcsb/rcsb-saguaro-3d.git"
  31. },
  32. "keywords": [
  33. "3D",
  34. "structure",
  35. "1D",
  36. "viewer",
  37. "sequence",
  38. "annotations",
  39. "gene",
  40. "protein",
  41. "PDB",
  42. "RCSB",
  43. "UniProt"
  44. ],
  45. "author": "Joan Segura Mora <joan.segura@rcsb.org>",
  46. "publishConfig": {
  47. "registry": "https://registry.npmjs.org/"
  48. },
  49. "license": "MIT",
  50. "devDependencies": {
  51. "@babel/core": "^7.10.4",
  52. "@babel/plugin-proposal-class-properties": "^7.10.4",
  53. "@babel/preset-env": "^7.10.4",
  54. "@types/react-dom": "^17.0.0",
  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": "^17.0.1",
  64. "react-dom": "^17.0.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/rcsb-molstar": "^1.3.0-beta.saguaro.1",
  78. "@rcsb/rcsb-saguaro": "^1.1.0",
  79. "@rcsb/rcsb-saguaro-app": "^1.1.2",
  80. "@types/react": "^17.0.0",
  81. "@types/react-select": "^3.0.11",
  82. "molstar": "^1.3.1",
  83. "react-select": "^3.0.8"
  84. },
  85. "bugs": {
  86. "url": "https://github.com/rcsb/rcsb-saguaro-3d/issues"
  87. },
  88. "homepage": "https://rcsb.github.io/rcsb-saguaro-3d",
  89. "directories": {
  90. "doc": "docs",
  91. "example": "examples"
  92. }
  93. }