123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- {
- "name": "mol-star-proto",
- "version": "0.1.0",
- "description": "Comprehensive molecular library.",
- "homepage": "https://github.com/mol-star/mol-star-proto#readme",
- "repository": {
- "type": "git",
- "url": "https://github.com/mol-star/mol-star-proto.git"
- },
- "bugs": {
- "url": "https://github.com/mol-star/mol-star-proto/issues"
- },
- "scripts": {
- "lint": "tslint src/**/*.ts",
- "build": "cpx \"src/**/*.{vert,frag,glsl,scss,woff,woff2,ttf,otf,eot,svg,html,gql}\" build/node_modules/ && tsc",
- "watch": "tsc -watch",
- "watch-extra": "cpx \"src/**/*.{vert,frag,glsl,scss,woff,woff2,ttf,otf,eot,svg,html,gql}\" build/node_modules/ --watch",
- "watch-all-win": "start cmd /K npm run watch & start cmd /K npm run watch-extra & start cmd /K npm run watch-viewer & start http-server -p 1338",
- "test": "jest",
- "build-viewer": "webpack build/node_modules/apps/viewer/index.js --mode development -o build/viewer/index.js",
- "watch-viewer": "webpack build/node_modules/apps/viewer/index.js -w --mode development -o build/viewer/index.js",
- "build-canvas": "webpack build/node_modules/apps/canvas/index.js --mode development -o build/canvas/index.js",
- "watch-canvas": "webpack build/node_modules/apps/canvas/index.js -w --mode development -o build/canvas/index.js",
- "model-server": "node build/node_modules/servers/model/server.js",
- "model-server-watch": "nodemon --watch build/node_modules build/node_modules/servers/model/server.js"
- },
- "nodemonConfig": {
- "ignoreRoot": [
- "./node_modules",
- ".git"
- ],
- "ignore": [],
- "delay": "2500"
- },
- "jest": {
- "moduleFileExtensions": [
- "ts",
- "js"
- ],
- "transform": {
- "\\.ts$": "ts-jest",
- "\\.(glsl|frag|vert)$": "jest-raw-loader"
- },
- "moduleDirectories": [
- "node_modules",
- "build/node_modules"
- ],
- "testURL": "http://localhost/",
- "moduleNameMapper": {
- "mol-app($|/.*)": "<rootDir>/src/mol-app$1",
- "mol-data($|/.*)": "<rootDir>/src/mol-data$1",
- "mol-geo($|/.*)": "<rootDir>/src/mol-geo$1",
- "mol-gl($|/.*)": "<rootDir>/src/mol-gl$1",
- "mol-io($|/.*)": "<rootDir>/src/mol-io$1",
- "mol-math($|/.*)": "<rootDir>/src/mol-math$1",
- "mol-model($|/.*)": "<rootDir>/src/mol-model$1",
- "mol-model-props($|/.*)": "<rootDir>/src/mol-model-props$1",
- "mol-ql($|/.*)": "<rootDir>/src/mol-ql$1",
- "mol-script($|/.*)": "<rootDir>/src/mol-script$1",
- "mol-task($|/.*)": "<rootDir>/src/mol-task$1",
- "mol-util($|/.*)": "<rootDir>/src/mol-util$1",
- "mol-view($|/.*)": "<rootDir>/src/mol-view$1"
- },
- "testRegex": "\\.spec\\.ts$"
- },
- "glslify": {
- "transform": [
- "glslify-import"
- ]
- },
- "author": "",
- "license": "MIT",
- "devDependencies": {
- "@types/argparse": "^1.0.34",
- "@types/benchmark": "^1.0.31",
- "@types/compression": "0.0.36",
- "@types/express": "^4.16.0",
- "@types/jest": "^23.3.2",
- "@types/node": "^10.9.4",
- "@types/node-fetch": "^2.1.2",
- "@types/react": "^16.4.14",
- "@types/react-dom": "^16.0.7",
- "benchmark": "^2.1.4",
- "cpx": "^1.5.0",
- "css-loader": "^1.0.0",
- "extra-watch-webpack-plugin": "^1.0.3",
- "file-loader": "^2.0.0",
- "glslify-import": "^3.1.0",
- "glslify-loader": "^1.0.2",
- "graphql-code-generator": "^0.12.2",
- "graphql-codegen-typescript-template": "^0.12.2",
- "jest": "^23.6.0",
- "jest-raw-loader": "^1.0.1",
- "mini-css-extract-plugin": "^0.4.2",
- "node-sass": "^4.9.3",
- "raw-loader": "^0.5.1",
- "resolve-url-loader": "^3.0.0",
- "sass-loader": "^7.1.0",
- "style-loader": "^0.23.0",
- "ts-jest": "^23.1.4",
- "tslint": "^5.11.0",
- "typescript": "^3.0.3",
- "uglify-js": "^3.4.9",
- "util.promisify": "^1.0.0",
- "webpack": "^4.19.0",
- "webpack-cli": "^3.1.0"
- },
- "dependencies": {
- "argparse": "^1.0.10",
- "compression": "^1.7.3",
- "express": "^4.16.3",
- "graphql": "^14.0.2",
- "graphql-request": "^1.8.2",
- "immer": "^1.6.0",
- "node-fetch": "^2.2.0",
- "react": "^16.5.1",
- "react-dom": "^16.5.1",
- "rxjs": "^6.3.2"
- }
- }
|