123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- {
- "name": "molstar",
- "version": "0.2.1",
- "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": "tslint src/**/*.ts",
- "test": "npm run lint && jest",
- "build": "npm run build-tsc && npm run build-extra && npm run build-webpack",
- "build-tsc": "tsc",
- "build-extra": "cpx \"src/**/*.{scss,woff,woff2,ttf,otf,eot,svg,html}\" lib/",
- "build-webpack": "webpack --mode production",
- "watch": "concurrently --kill-others \"npm:watch-tsc\" \"npm:watch-extra\" \"npm:watch-webpack\"",
- "watch-tsc": "tsc -watch",
- "watch-extra": "cpx \"src/**/*.{scss,woff,woff2,ttf,otf,eot,svg,html}\" lib/ --watch",
- "watch-webpack": "webpack -w --mode development --display minimal",
- "model-server": "node lib/servers/model/server.js",
- "model-server-watch": "nodemon --watch lib lib/servers/model/server.js",
- "postinstall": "npm run build",
- "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": {
- "benchmark": "^2.1.4",
- "circular-dependency-plugin": "^5.0.2",
- "concurrently": "^4.1.0",
- "cpx": "^1.5.0",
- "css-loader": "^2.1.1",
- "extra-watch-webpack-plugin": "^1.0.3",
- "file-loader": "^3.0.1",
- "graphql-code-generator": "^0.18.2",
- "graphql-codegen-time": "^0.18.2",
- "graphql-codegen-typescript-template": "^0.18.2",
- "jest": "^24.8.0",
- "jest-raw-loader": "^1.0.1",
- "mini-css-extract-plugin": "^0.7.0",
- "node-sass": "^4.12.0",
- "raw-loader": "^2.0.0",
- "resolve-url-loader": "^3.1.0",
- "sass-loader": "^7.1.0",
- "style-loader": "^0.23.1",
- "ts-jest": "^24.0.2",
- "tslint": "^5.17.0",
- "typescript": "^3.5.1",
- "uglify-js": "^3.6.0",
- "util.promisify": "^1.0.0",
- "webpack": "^4.32.2",
- "webpack-cli": "^3.3.2"
- },
- "dependencies": {
- "@types/argparse": "^1.0.36",
- "@types/benchmark": "^1.0.31",
- "@types/compression": "0.0.36",
- "@types/express": "^4.16.1",
- "@types/jest": "^24.0.13",
- "@types/node": "^12.0.4",
- "@types/node-fetch": "^2.3.4",
- "@types/react": "^16.8.19",
- "@types/react-dom": "^16.8.4",
- "@types/swagger-ui-dist": "3.0.0",
- "@types/webgl2": "0.0.4",
- "argparse": "^1.0.10",
- "compression": "^1.7.4",
- "express": "^4.17.1",
- "graphql": "^14.3.1",
- "immutable": "^3.8.2",
- "node-fetch": "^2.6.0",
- "react": "^16.8.6",
- "react-dom": "^16.8.6",
- "rxjs": "^6.5.2",
- "swagger-ui-dist": "^3.22.2",
- "xhr2": "^0.2.0"
- }
- }
|