package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "@rcsb/rcsb-saguaro-3d",
  3. "version": "1.0.0",
  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 copyExample && 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 copyExample && 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. "copyExample": "npm run copyExample_1 && npm run copyExample_2 && npm run copyExample_3 && npm run copyExample_4 && npm run copyExample_5",
  22. "copyExample_1": "ncp src/examples/single-chain/index.html build/src/examples/single-chain/index.html",
  23. "copyExample_2": "ncp src/examples/structural-alignment/index.html build/src/examples/structural-alignment/index.html",
  24. "copyExample_3": "ncp src/examples/assembly/index.html build/src/examples/assembly/index.html",
  25. "copyExample_4": "ncp src/examples/multiple-chain/index.html build/src/examples/multiple-chain/index.html",
  26. "copyExample_5": "ncp src/examples/css-config/index.html build/src/examples/css-config/index.html",
  27. "buildDoc": "npx typedoc --mode file --out docs --exclude src/examples src",
  28. "clean": "del-cli build/src",
  29. "cleanAll": "npm run clean && del-cli build/dist",
  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.10.4",
  56. "@babel/plugin-proposal-class-properties": "^7.10.4",
  57. "@babel/preset-env": "^7.10.4",
  58. "@types/react": "^17.0.11",
  59. "@types/react-dom": "^17.0.0",
  60. "@types/react-select": "^3.0.11",
  61. "babel-loader": "^8.1.0",
  62. "concurrently": "^5.3.0",
  63. "css-loader": "^3.6.0",
  64. "del-cli": "^3.0.1",
  65. "file-loader": "^6.2.0",
  66. "http-server": "^14.0.0",
  67. "mini-css-extract-plugin": "^0.9.0",
  68. "ncp": "^2.0.0",
  69. "node-sass": "^4.14.1",
  70. "react": "^17.0.1",
  71. "react-dom": "^17.0.1",
  72. "react-icons": "^3.11.0",
  73. "rxjs": "^6.6.6",
  74. "sass-loader": "^7.3.1",
  75. "style-loader": "^1.2.1",
  76. "ts-loader": "^6.2.2",
  77. "tslib": "^2.0.1",
  78. "typedoc": "^0.17.8",
  79. "typescript": "4.0.2",
  80. "webpack": "^4.44.1",
  81. "webpack-cli": "^3.3.12"
  82. },
  83. "dependencies": {
  84. "@rcsb/rcsb-molstar": "^2.0.0-dev.8",
  85. "@rcsb/rcsb-saguaro": "^2.0.0",
  86. "@rcsb/rcsb-saguaro-api": "^2.1.0",
  87. "@rcsb/rcsb-saguaro-app": "^3.0.0",
  88. "molstar": "^2.0.7",
  89. "react-select": "^3.0.8"
  90. },
  91. "bugs": {
  92. "url": "https://github.com/rcsb/rcsb-saguaro-3d/issues"
  93. },
  94. "homepage": "https://rcsb.github.io/rcsb-saguaro-3d",
  95. "directories": {
  96. "doc": "docs",
  97. "example": "examples"
  98. }
  99. }