package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. {
  2. "name": "molstar",
  3. "version": "0.1.0",
  4. "description": "A comprehensive macromolecular library.",
  5. "homepage": "https://github.com/molstar/molstar#readme",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/molstar/molstar.git"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/molstar/molstar/issues"
  12. },
  13. "scripts": {
  14. "lint": "tslint src/**/*.ts",
  15. "test": "npm run lint && jest",
  16. "build": "cpx \"src/**/*.{scss,woff,woff2,ttf,otf,eot,svg,html}\" lib/ && tsc",
  17. "postinstall": "npm run build",
  18. "watch": "concurrently --kill-others \"npm:watch-ts\" \"npm:watch-extra\" \"npm:watch-webpack\"",
  19. "watch-ts": "tsc -watch",
  20. "watch-extra": "cpx \"src/**/*.{scss,woff,woff2,ttf,otf,eot,svg,html}\" lib/ --watch",
  21. "build-webpack": "webpack --mode production",
  22. "watch-webpack": "webpack -w --mode development --display minimal",
  23. "model-server": "node lib/servers/model/server.js",
  24. "model-server-watch": "nodemon --watch lib lib/servers/model/server.js"
  25. },
  26. "nodemonConfig": {
  27. "ignoreRoot": [
  28. "./node_modules",
  29. ".git"
  30. ],
  31. "ignore": [],
  32. "delay": "2500"
  33. },
  34. "jest": {
  35. "moduleFileExtensions": [
  36. "ts",
  37. "js"
  38. ],
  39. "transform": {
  40. "\\.ts$": "ts-jest"
  41. },
  42. "moduleDirectories": [
  43. "node_modules",
  44. "lib"
  45. ],
  46. "testURL": "http://localhost/",
  47. "testRegex": "\\.spec\\.ts$"
  48. },
  49. "author": "Mol* Contributors",
  50. "contributors": [
  51. "Alexander Rose <alexander.rose@weirdbyte.de>",
  52. "David Sehnal <david.sehnal@gmail.com>",
  53. "Sebastian Bittrich <sebastian.bittrich@rcsb.org>"
  54. ],
  55. "license": "MIT",
  56. "devDependencies": {
  57. "benchmark": "^2.1.4",
  58. "circular-dependency-plugin": "^5.0.2",
  59. "concurrently": "^4.1.0",
  60. "cpx": "^1.5.0",
  61. "css-loader": "^2.1.1",
  62. "extra-watch-webpack-plugin": "^1.0.3",
  63. "file-loader": "^3.0.1",
  64. "graphql-code-generator": "^0.18.2",
  65. "graphql-codegen-time": "^0.18.2",
  66. "graphql-codegen-typescript-template": "^0.18.2",
  67. "jest": "^24.8.0",
  68. "jest-raw-loader": "^1.0.1",
  69. "mini-css-extract-plugin": "^0.7.0",
  70. "node-sass": "^4.12.0",
  71. "raw-loader": "^2.0.0",
  72. "resolve-url-loader": "^3.1.0",
  73. "sass-loader": "^7.1.0",
  74. "style-loader": "^0.23.1",
  75. "ts-jest": "^24.0.2",
  76. "tslint": "^5.17.0",
  77. "typescript": "^3.5.1",
  78. "uglify-js": "^3.6.0",
  79. "util.promisify": "^1.0.0",
  80. "webpack": "^4.32.2",
  81. "webpack-cli": "^3.3.2"
  82. },
  83. "dependencies": {
  84. "@types/argparse": "^1.0.36",
  85. "@types/benchmark": "^1.0.31",
  86. "@types/compression": "0.0.36",
  87. "@types/express": "^4.16.1",
  88. "@types/jest": "^24.0.13",
  89. "@types/node": "^12.0.4",
  90. "@types/node-fetch": "^2.3.4",
  91. "@types/react": "^16.8.19",
  92. "@types/react-dom": "^16.8.4",
  93. "@types/swagger-ui-dist": "3.0.0",
  94. "@types/webgl2": "0.0.4",
  95. "argparse": "^1.0.10",
  96. "compression": "^1.7.4",
  97. "express": "^4.17.1",
  98. "graphql": "^14.3.1",
  99. "immutable": "^3.8.2",
  100. "node-fetch": "^2.6.0",
  101. "react": "^16.8.6",
  102. "react-dom": "^16.8.6",
  103. "rxjs": "^6.5.2",
  104. "swagger-ui-dist": "^3.22.2",
  105. "xhr2": "^0.2.0"
  106. }
  107. }