12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {
- "name": "rcsb-molstar",
- "version": "0.6.0-dev.6",
- "description": "RCSB PDB apps and props based on Mol*.",
- "homepage": "https://github.com/rcsb/rcsb-molstar#readme",
- "repository": {
- "type": "git",
- "url": "https://github.com/rcsb/rcsb-molstar.git"
- },
- "bugs": {
- "url": "https://github.com/rcsb/rcsb-molstar/issues"
- },
- "scripts": {
- "test": "npm run lint",
- "lint": "eslint src/**/*.ts",
- "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}\" build/src/",
- "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-tsc": "tsc --watch --incremental",
- "watch-extra": "cpx \"src/**/*.{scss,woff,woff2,ttf,otf,eot,svg,html,ico}\" build/src/ --watch",
- "watch-webpack": "webpack -w --mode development --display minimal",
- "serve": "http-server -p 1335",
- "preversion": "npm run test",
- "postversion": "git push && git push --tags",
- "prepublishOnly": "npm run test && npm run build"
- },
- "publishConfig": {
- "registry": "http://nexus3.rcsb.org/repository/npm-rcsb/"
- },
- "main": "build/src/index.js",
- "files": [
- "build/dist/"
- ],
- "author": "RCSB PDB and Mol* Contributors",
- "license": "MIT",
- "devDependencies": {
- "@types/argparse": "^1.0.38",
- "@types/node": "^13.11.0",
- "@types/node-fetch": "^2.5.5",
- "@types/react": "^16.9.32",
- "@types/react-dom": "^16.9.6",
- "@typescript-eslint/eslint-plugin": "^2.26.0",
- "@typescript-eslint/parser": "^2.26.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": "^6.0.0",
- "mini-css-extract-plugin": "^0.9.0",
- "molstar": "^0.6.1",
- "node-fetch": "^2.6.0",
- "node-sass": "^4.13.1",
- "raw-loader": "^4.0.0",
- "react": "^16.13.1",
- "react-dom": "^16.13.1",
- "resolve-url-loader": "^3.1.1",
- "sass-loader": "^8.0.2",
- "style-loader": "^1.1.3",
- "tslib": "^1.11.1",
- "typescript": "3.8.3",
- "webpack": "^4.42.1",
- "webpack-cli": "^3.3.11"
- }
- }
|