package.json 2.0 KB

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