package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "rcsb-molstar",
  3. "version": "0.4.2",
  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": "tslint src/**/*.ts",
  16. "build": "npm run build-tsc && npm run build-extra && npm run build-webpack",
  17. "build-tsc": "tsc",
  18. "build-extra": "cpx \"src/**/*.{scss,woff,woff2,ttf,otf,eot,svg,html,ico}\" build/src/",
  19. "build-webpack": "webpack --mode production",
  20. "watch": "concurrently --kill-others \"npm:watch-tsc\" \"npm:watch-extra\" \"npm:watch-webpack\"",
  21. "watch-tsc": "tsc -watch",
  22. "watch-extra": "cpx \"src/**/*.{scss,woff,woff2,ttf,otf,eot,svg,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. "postversion": "git push && git push --tags",
  27. "prepublishOnly": "npm run test && npm run build"
  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.36",
  40. "@types/node": "^12.12.9",
  41. "@types/node-fetch": "^2.5.3",
  42. "@types/react": "^16.9.11",
  43. "@types/react-dom": "^16.9.4",
  44. "concurrently": "^5.0.0",
  45. "cpx": "^1.5.0",
  46. "css-loader": "^3.2.0",
  47. "extra-watch-webpack-plugin": "^1.0.3",
  48. "file-loader": "^4.2.0",
  49. "mini-css-extract-plugin": "^0.8.0",
  50. "molstar": "^0.4.3",
  51. "node-fetch": "^2.6.0",
  52. "node-sass": "^4.13.0",
  53. "raw-loader": "^3.1.0",
  54. "react": "^16.12.0",
  55. "react-dom": "^16.12.0",
  56. "resolve-url-loader": "^3.1.1",
  57. "rxjs": "^6.5.3",
  58. "sass-loader": "^8.0.0",
  59. "style-loader": "^1.0.0",
  60. "tslint": "^5.20.1",
  61. "typescript": "3.7.2",
  62. "webpack": "^4.41.2",
  63. "webpack-cli": "^3.3.10"
  64. },
  65. "dependencies": {}
  66. }