package.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "name": "mol-star-proto",
  3. "version": "0.1.0",
  4. "description": "Comprehensive molecular library.",
  5. "homepage": "https://github.com/mol-star/mol-star-proto#readme",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/mol-star/mol-star-proto.git"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/mol-star/mol-star-proto/issues"
  12. },
  13. "scripts": {
  14. "lint": "tslint src/**/*.ts",
  15. "build": "cpx \"src/**/*.{vert,frag,glsl,scss,woff,woff2,ttf,otf,eot,svg,html}\" build/node_modules/ && tsc",
  16. "watch": "tsc -watch",
  17. "watch-extra": "cpx \"src/**/*.{vert,frag,glsl,scss,woff,woff2,ttf,otf,eot,svg,html}\" build/node_modules/ --watch",
  18. "test": "jest",
  19. "build-viewer": "webpack build/node_modules/apps/viewer/index.js --mode development -o build/viewer/index.js",
  20. "watch-viewer": "webpack build/node_modules/apps/viewer/index.js -w --mode development -o build/viewer/index.js",
  21. "run-model-server": "node build/node_modules/servers/model/server.js",
  22. "run-model-server-watch": "nodemon --watch build/node_modules build/node_modules/servers/model/server.js"
  23. },
  24. "nodemonConfig": {
  25. "ignoreRoot": ["./node_modules", ".git"],
  26. "ignore": [],
  27. "delay": "2500"
  28. },
  29. "jest": {
  30. "moduleFileExtensions": [
  31. "ts",
  32. "js"
  33. ],
  34. "transform": {
  35. "\\.ts$": "ts-jest",
  36. "\\.(glsl|frag|vert)$": "jest-raw-loader"
  37. },
  38. "moduleDirectories": [
  39. "node_modules",
  40. "build/node_modules"
  41. ],
  42. "moduleNameMapper": {
  43. "mol-app($|/.*)": "<rootDir>/src/mol-app$1",
  44. "mol-data($|/.*)": "<rootDir>/src/mol-data$1",
  45. "mol-geo($|/.*)": "<rootDir>/src/mol-geo$1",
  46. "mol-gl($|/.*)": "<rootDir>/src/mol-gl$1",
  47. "mol-io($|/.*)": "<rootDir>/src/mol-io$1",
  48. "mol-math($|/.*)": "<rootDir>/src/mol-math$1",
  49. "mol-model($|/.*)": "<rootDir>/src/mol-model$1",
  50. "mol-ql($|/.*)": "<rootDir>/src/mol-ql$1",
  51. "mol-script($|/.*)": "<rootDir>/src/mol-script$1",
  52. "mol-task($|/.*)": "<rootDir>/src/mol-task$1",
  53. "mol-util($|/.*)": "<rootDir>/src/mol-util$1",
  54. "mol-view($|/.*)": "<rootDir>/src/mol-view$1"
  55. },
  56. "testRegex": "\\.spec\\.ts$"
  57. },
  58. "glslify": {
  59. "transform": [
  60. "glslify-import"
  61. ]
  62. },
  63. "author": "",
  64. "license": "MIT",
  65. "devDependencies": {
  66. "@types/argparse": "^1.0.33",
  67. "@types/benchmark": "^1.0.31",
  68. "@types/compression": "0.0.36",
  69. "@types/express": "^4.11.1",
  70. "@types/jest": "^22.2.3",
  71. "@types/node": "^10.1.2",
  72. "@types/node-fetch": "^1.6.9",
  73. "@types/react": "^16.3.14",
  74. "@types/react-dom": "^16.0.5",
  75. "benchmark": "^2.1.4",
  76. "copyfiles": "^2.0.0",
  77. "cpx": "^1.5.0",
  78. "css-loader": "^0.28.11",
  79. "extra-watch-webpack-plugin": "^1.0.3",
  80. "extract-text-webpack-plugin": "^4.0.0-beta.0",
  81. "file-loader": "^1.1.11",
  82. "glslify-import": "^3.1.0",
  83. "glslify-loader": "^1.0.2",
  84. "jest": "^22.4.4",
  85. "jest-raw-loader": "^1.0.1",
  86. "node-sass": "^4.9.0",
  87. "raw-loader": "^0.5.1",
  88. "resolve-url-loader": "^2.3.0",
  89. "sass-loader": "^7.0.1",
  90. "style-loader": "^0.21.0",
  91. "ts-jest": "^22.4.6",
  92. "tslint": "^5.10.0",
  93. "typescript": "^2.8.3",
  94. "uglify-js": "^3.3.27",
  95. "util.promisify": "^1.0.0",
  96. "webpack": "^4.8.3",
  97. "webpack-cli": "^2.1.3"
  98. },
  99. "dependencies": {
  100. "argparse": "^1.0.10",
  101. "compression": "^1.7.2",
  102. "express": "^4.16.3",
  103. "immutable": "^4.0.0-rc.9",
  104. "node-fetch": "^2.1.2",
  105. "react": "^16.3.2",
  106. "react-dom": "^16.3.2",
  107. "rxjs": "^6.2.0"
  108. }
  109. }