package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "@bioinsilico/rcsb-saguaro-3d",
  3. "version": "0.0.6",
  4. "description": "RCSB Molstar/Saguaro Web App",
  5. "main": "dist/build/RcsbFv3DBuilder.js",
  6. "files": [
  7. "dist/build/rcsb-saguaro-3d.js",
  8. "dist/build/config.js",
  9. "dist/build/*ts"
  10. ],
  11. "scripts": {
  12. "tsc": "tsc",
  13. "build": "webpack --config ./webpack.config.js",
  14. "buildApp": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run copyConfig && npm run build && npm run clean",
  15. "cpStyles": "ncp src/styles dist/src/styles",
  16. "copyConfig": "ncp dist/src/config.js dist/build/config.js",
  17. "clean": "del-cli dist/src",
  18. "cleanAll": "npm run clean && del-cli dist/build",
  19. "test": "echo \"Error: no test specified\" && exit 1"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/rcsb/rcsb-saguaro-3d.git"
  24. },
  25. "keywords": [
  26. "3D",
  27. "structure",
  28. "1D",
  29. "viewer",
  30. "sequence",
  31. "annotations",
  32. "gene",
  33. "protein",
  34. "PDB",
  35. "RCSB",
  36. "UniProt"
  37. ],
  38. "author": "Joan Segura Mora <joan.segura@rcsb.org>",
  39. "publishConfig": {
  40. "registry": "https://registry.npmjs.org/"
  41. },
  42. "license": "MIT",
  43. "devDependencies": {
  44. "@babel/core": "^7.10.4",
  45. "@babel/plugin-proposal-class-properties": "^7.10.4",
  46. "@babel/preset-env": "^7.10.4",
  47. "@types/react": "^16.9.41",
  48. "@types/react-dom": "^16.9.8",
  49. "babel-loader": "^8.1.0",
  50. "css-loader": "^3.6.0",
  51. "del-cli": "^3.0.1",
  52. "mini-css-extract-plugin": "^0.9.0",
  53. "ncp": "^2.0.0",
  54. "node-sass": "^4.14.1",
  55. "react": "^16.13.1",
  56. "react-dom": "^16.13.1",
  57. "react-icons": "^3.11.0",
  58. "sass-loader": "^7.3.1",
  59. "style-loader": "^1.2.1",
  60. "ts-loader": "^6.2.2",
  61. "typedoc": "^0.17.8",
  62. "typescript": "^3.9.6",
  63. "webpack": "^4.43.0",
  64. "webpack-cli": "^3.3.12"
  65. },
  66. "dependencies": {
  67. "@bioinsilico/rcsb-saguaro-app": "^0.9.23",
  68. "molstar": "^1.1.33"
  69. },
  70. "bugs": {
  71. "url": "https://github.com/rcsb/rcsb-saguaro-3d/issues"
  72. },
  73. "homepage": "https://rcsb.github.io/rcsb-saguaro-3d",
  74. "directories": {
  75. "doc": "docs",
  76. "example": "examples"
  77. }
  78. }