package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "name": "@rcsb/rcsb-saguaro-3d",
  3. "version": "1.2.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",
  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. "buildDoc": "npx typedoc --mode file --out docs --exclude src/examples src && sed -i '' '/---/d' docs/index.html",
  26. "clean": "del-cli build/src",
  27. "cleanAll": "npm run clean && del-cli build/dist",
  28. "cleanExamples": "del-cli build/examples",
  29. "test": "echo \"Error: no test specified\" && exit 1"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "git://github.com/rcsb/rcsb-saguaro-3d.git"
  34. },
  35. "keywords": [
  36. "3D",
  37. "structure",
  38. "1D",
  39. "viewer",
  40. "sequence",
  41. "annotations",
  42. "gene",
  43. "protein",
  44. "PDB",
  45. "RCSB",
  46. "UniProt"
  47. ],
  48. "author": "Joan Segura Mora <joan.segura@rcsb.org>",
  49. "publishConfig": {
  50. "registry": "https://registry.npmjs.org/"
  51. },
  52. "license": "MIT",
  53. "devDependencies": {
  54. "@babel/core": "^7.10.4",
  55. "@babel/plugin-proposal-class-properties": "^7.10.4",
  56. "@babel/preset-env": "^7.10.4",
  57. "@types/react": "^17.0.37",
  58. "@types/react-dom": "^17.0.11",
  59. "@types/react-select": "^3.0.11",
  60. "babel-loader": "^8.1.0",
  61. "buffer": "^6.0.3",
  62. "concurrently": "^6.4.0",
  63. "crypto-browserify": "^3.12.0",
  64. "css-loader": "^6.5.1",
  65. "del-cli": "^3.0.1",
  66. "file-loader": "^6.2.0",
  67. "http-server": "^14.0.0",
  68. "mini-css-extract-plugin": "^2.4.5",
  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": "^3.11.0",
  74. "rxjs": "^7.4.0",
  75. "sass": "^1.43.5",
  76. "sass-loader": "^12.3.0",
  77. "stream-browserify": "^3.0.0",
  78. "style-loader": "^3.3.1",
  79. "ts-loader": "^6.2.2",
  80. "tslib": "^2.3.1",
  81. "typedoc": "^0.17.8",
  82. "typescript": "^4.5.2",
  83. "webpack": "^5.64.4",
  84. "webpack-cli": "^4.9.1"
  85. },
  86. "dependencies": {
  87. "@rcsb/rcsb-molstar": "^2.0.0-dev.10",
  88. "@rcsb/rcsb-saguaro": "^2.0.0",
  89. "@rcsb/rcsb-saguaro-api": "^2.1.0",
  90. "@rcsb/rcsb-saguaro-app": "^3.4.0",
  91. "molstar": "^2.4.1",
  92. "react-select": "^3.0.8"
  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. }