package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@rcsb/rcsb-molstar",
  3. "version": "2.0.6",
  4. "description": "RCSB PDB apps and props based on Mol*.",
  5. "homepage": "https://github.com/molstar/rcsb-molstar#readme",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/molstar/rcsb-molstar.git"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/molstar/rcsb-molstar/issues"
  12. },
  13. "scripts": {
  14. "test": "npm run lint",
  15. "lint": "eslint src/**/*.ts",
  16. "build": "npm run build-tsc && npm run build-extra && npm run build-webpack",
  17. "build-tsc": "tsc --incremental",
  18. "build-extra": "cpx \"src/**/*.{scss,html,ico}\" build/src/",
  19. "build-webpack": "webpack --mode production",
  20. "watch": "concurrently -c \"green,gray,gray\" --names \"tsc,ext,wpc\" --kill-others \"npm:watch-tsc\" \"npm:watch-extra\" \"npm:watch-webpack\"",
  21. "watch-tsc": "tsc --watch --incremental",
  22. "watch-extra": "cpx \"src/**/*.{scss,html,ico}\" build/src/ --watch",
  23. "watch-webpack": "webpack -w --mode development --stats minimal",
  24. "serve": "http-server -p 1335",
  25. "preversion": "npm run test",
  26. "version": "npm run build",
  27. "postversion": "git push && git push --tags"
  28. },
  29. "publishConfig": {
  30. "registry": "https://registry.npmjs.org/"
  31. },
  32. "main": "build/src/index.js",
  33. "files": [
  34. "build/dist/",
  35. "build/src/viewer/"
  36. ],
  37. "author": "RCSB PDB and Mol* Contributors",
  38. "license": "MIT",
  39. "devDependencies": {
  40. "@types/react": "^17.0.37",
  41. "@types/react-dom": "^17.0.11",
  42. "@typescript-eslint/eslint-plugin": "^5.5.0",
  43. "@typescript-eslint/parser": "^5.5.0",
  44. "buffer": "^6.0.3",
  45. "concurrently": "^6.4.0",
  46. "cpx2": "^4.0.0",
  47. "crypto-browserify": "^3.12.0",
  48. "css-loader": "^6.5.1",
  49. "eslint": "^8.3.0",
  50. "extra-watch-webpack-plugin": "^1.0.3",
  51. "file-loader": "^6.2.0",
  52. "fs-extra": "^10.0.0",
  53. "mini-css-extract-plugin": "^2.4.5",
  54. "molstar": "^3.0.0-dev.9",
  55. "path-browserify": "^1.0.1",
  56. "raw-loader": "^4.0.2",
  57. "react": "^17.0.2",
  58. "react-dom": "^17.0.2",
  59. "rxjs": "^7.4.0",
  60. "sass": "^1.43.5",
  61. "sass-loader": "^12.3.0",
  62. "stream-browserify": "^3.0.0",
  63. "style-loader": "^3.3.1",
  64. "tslib": "^2.3.1",
  65. "typescript": "^4.5.2",
  66. "webpack": "^5.64.4",
  67. "webpack-cli": "^4.9.1"
  68. }
  69. }