123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- {
- "name": "molstar",
- "version": "0.5.6",
- "description": "A comprehensive macromolecular library.",
- "homepage": "https://github.com/molstar/molstar#readme",
- "repository": {
- "type": "git",
- "url": "https://github.com/molstar/molstar.git"
- },
- "bugs": {
- "url": "https://github.com/molstar/molstar/issues"
- },
- "scripts": {
- "lint": "eslint src/**/*.ts",
- "test": "npm run lint && jest",
- "build": "npm run build-tsc && npm run build-extra && npm run build-webpack",
- "build-tsc": "tsc --incremental",
- "build-extra": "cpx \"src/**/*.{scss,woff,woff2,ttf,otf,eot,svg,html,ico}\" lib/",
- "build-webpack": "webpack --mode production",
- "watch": "concurrently -c \"green,gray,gray\" --names \"tsc,ext,wpc\" --kill-others \"npm:watch-tsc\" \"npm:watch-extra\" \"npm:watch-webpack\"",
- "watch-viewer": "concurrently -c \"green,gray,gray\" --names \"tsc,ext,wpc\" --kill-others \"npm:watch-tsc\" \"npm:watch-extra\" \"npm:watch-webpack-viewer\"",
- "watch-tsc": "tsc --watch --incremental",
- "watch-extra": "cpx \"src/**/*.{scss,woff,woff2,ttf,otf,eot,svg,html,ico}\" lib/ --watch",
- "watch-webpack": "webpack -w --mode development --display errors-only --info-verbosity verbose",
- "watch-webpack-viewer": "webpack -w --mode development --display errors-only --info-verbosity verbose --config ./webpack.config.viewer.js",
- "serve": "http-server -p 1338",
- "model-server": "node lib/servers/model/server.js",
- "model-server-watch": "nodemon --watch lib lib/servers/model/server.js",
- "volume-server": "node lib/servers/volume/server.js --idMap em 'test/${id}.mdb' --defaultPort 1336",
- "plugin-state": "node lib/servers/plugin-state/index.js",
- "preversion": "npm run test",
- "postversion": "git push && git push --tags",
- "prepublishOnly": "npm run test && npm run build"
- },
- "files": [
- "lib/"
- ],
- "nodemonConfig": {
- "ignoreRoot": [
- "./node_modules",
- ".git"
- ],
- "ignore": [],
- "delay": "2500"
- },
- "jest": {
- "moduleFileExtensions": [
- "ts",
- "js"
- ],
- "transform": {
- "\\.ts$": "ts-jest"
- },
- "moduleDirectories": [
- "node_modules",
- "lib"
- ],
- "testURL": "http://localhost/",
- "testRegex": "\\.spec\\.ts$"
- },
- "author": "Mol* Contributors",
- "contributors": [
- "Alexander Rose <alexander.rose@weirdbyte.de>",
- "David Sehnal <david.sehnal@gmail.com>",
- "Sebastian Bittrich <sebastian.bittrich@rcsb.org>"
- ],
- "license": "MIT",
- "devDependencies": {
- "@graphql-codegen/add": "^1.12.2",
- "@graphql-codegen/cli": "^1.12.2",
- "@graphql-codegen/time": "^1.12.2",
- "@graphql-codegen/typescript": "^1.12.2",
- "@graphql-codegen/typescript-graphql-files-modules": "^1.12.2",
- "@graphql-codegen/typescript-graphql-request": "^1.12.2",
- "@graphql-codegen/typescript-operations": "^1.12.2",
- "@types/cors": "^2.8.6",
- "@typescript-eslint/eslint-plugin": "^2.22.0",
- "@typescript-eslint/parser": "^2.22.0",
- "benchmark": "^2.1.4",
- "circular-dependency-plugin": "^5.2.0",
- "concurrently": "^5.1.0",
- "cpx2": "^2.0.0",
- "css-loader": "^3.4.2",
- "eslint": "^6.8.0",
- "extra-watch-webpack-plugin": "^1.0.3",
- "file-loader": "^5.1.0",
- "fs-extra": "^8.1.0",
- "http-server": "^0.12.1",
- "jest": "^25.1.0",
- "jest-raw-loader": "^1.0.1",
- "mini-css-extract-plugin": "^0.9.0",
- "node-sass": "^4.13.1",
- "pascal-case": "^3.1.1",
- "raw-loader": "^4.0.0",
- "resolve-url-loader": "^3.1.1",
- "sass-loader": "^8.0.2",
- "simple-git": "^1.131.0",
- "style-loader": "^1.1.3",
- "ts-jest": "^25.2.1",
- "typescript": "^3.8.3",
- "webpack": "^4.42.0",
- "webpack-cli": "^3.3.11"
- },
- "dependencies": {
- "@types/argparse": "^1.0.38",
- "@types/benchmark": "^1.0.31",
- "@types/compression": "1.7.0",
- "@types/express": "^4.17.3",
- "@types/jest": "^25.1.3",
- "@types/node": "^13.7.7",
- "@types/node-fetch": "^2.5.5",
- "@types/react": "^16.9.23",
- "@types/react-dom": "^16.9.5",
- "@types/swagger-ui-dist": "3.0.5",
- "argparse": "^1.0.10",
- "body-parser": "^1.19.0",
- "compression": "^1.7.4",
- "cors": "^2.8.5",
- "express": "^4.17.1",
- "graphql": "^14.6.0",
- "immer": "^6.0.0",
- "immutable": "^3.8.2",
- "node-fetch": "^2.6.0",
- "react": "^16.13.0",
- "react-dom": "^16.13.0",
- "rxjs": "^6.5.4",
- "swagger-ui-dist": "^3.25.0",
- "tslib": "^1.11.1",
- "util.promisify": "^1.0.1",
- "xhr2": "^0.2.0"
- }
- }
|