package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "rcsb-molstar",
  3. "version": "0.7.4",
  4. "description": "RCSB PDB apps and props based on Mol*.",
  5. "homepage": "https://github.com/rcsb/rcsb-molstar#readme",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/rcsb/rcsb-molstar.git"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/rcsb/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 --display 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": "http://nexus3.rcsb.org/repository/npm-rcsb/"
  31. },
  32. "main": "build/src/index.js",
  33. "files": [
  34. "build/dist/"
  35. ],
  36. "author": "RCSB PDB and Mol* Contributors",
  37. "license": "MIT",
  38. "devDependencies": {
  39. "@types/argparse": "^1.0.38",
  40. "@types/node": "^13.13.5",
  41. "@types/node-fetch": "^2.5.7",
  42. "@types/react": "^16.9.35",
  43. "@types/react-dom": "^16.9.8",
  44. "@typescript-eslint/eslint-plugin": "^2.32.0",
  45. "@typescript-eslint/parser": "^2.32.0",
  46. "concurrently": "^5.2.0",
  47. "cpx2": "^2.0.0",
  48. "css-loader": "^3.5.3",
  49. "eslint": "^7.0.0",
  50. "extra-watch-webpack-plugin": "^1.0.3",
  51. "file-loader": "^6.0.0",
  52. "mini-css-extract-plugin": "^0.9.0",
  53. "molstar": "^0.7.1-dev.4",
  54. "node-fetch": "^2.6.0",
  55. "node-sass": "^4.14.1",
  56. "raw-loader": "^4.0.1",
  57. "react": "^16.13.1",
  58. "react-dom": "^16.13.1",
  59. "rxjs": "^6.5.5",
  60. "sass-loader": "^8.0.2",
  61. "style-loader": "^1.2.1",
  62. "tslib": "^1.11.2",
  63. "typescript": "3.8.3",
  64. "webpack": "^4.43.0",
  65. "webpack-cli": "^3.3.11"
  66. }
  67. }