package.json 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "name": "@rcsb/rcsb-saguaro-3d",
  3. "version": "1.0.1-beta",
  4. "description": "RCSB Molstar/Saguaro Web App",
  5. "main": "build/dist/RcsbFv3DBuilder.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",
  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",
  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.11",
  58. "@types/react-dom": "^17.0.0",
  59. "@types/react-select": "^3.0.11",
  60. "babel-loader": "^8.1.0",
  61. "concurrently": "^5.3.0",
  62. "css-loader": "^3.6.0",
  63. "del-cli": "^3.0.1",
  64. "file-loader": "^6.2.0",
  65. "http-server": "^14.0.0",
  66. "mini-css-extract-plugin": "^0.9.0",
  67. "ncp": "^2.0.0",
  68. "node-sass": "^4.14.1",
  69. "react": "^17.0.1",
  70. "react-dom": "^17.0.1",
  71. "react-icons": "^3.11.0",
  72. "rxjs": "^6.6.6",
  73. "sass-loader": "^7.3.1",
  74. "style-loader": "^1.2.1",
  75. "ts-loader": "^6.2.2",
  76. "tslib": "^2.0.1",
  77. "typedoc": "^0.17.8",
  78. "typescript": "4.0.2",
  79. "webpack": "^4.44.1",
  80. "webpack-cli": "^3.3.12"
  81. },
  82. "dependencies": {
  83. "@rcsb/rcsb-molstar": "^2.0.0-dev.8",
  84. "@rcsb/rcsb-saguaro": "^2.0.0",
  85. "@rcsb/rcsb-saguaro-api": "^2.1.0",
  86. "@rcsb/rcsb-saguaro-app": "^3.0.0",
  87. "molstar": "^2.0.7",
  88. "react-select": "^3.0.8"
  89. },
  90. "bugs": {
  91. "url": "https://github.com/rcsb/rcsb-saguaro-3d/issues"
  92. },
  93. "homepage": "https://rcsb.github.io/rcsb-saguaro-3d",
  94. "directories": {
  95. "doc": "docs",
  96. "example": "cdn-examples"
  97. }
  98. }