1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- {
- "name": "@rcsb/rcsb-saguaro-3d",
- "version": "1.0.1-beta",
- "description": "RCSB Molstar/Saguaro Web App",
- "main": "build/dist/RcsbFv3DBuilder.js",
- "files": [
- "build/dist"
- ],
- "scripts": {
- "tsc": "tsc --incremental",
- "tscExamples": "tsc --project ./tsconfig.examples.json",
- "build": "webpack --config ./webpack.config.js",
- "buildAll": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run copyConfig && npm run build && npm run buildExamples",
- "buildApp": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run copyConfig && npm run build && npm run clean",
- "packExamples": "webpack --config ./webpack.examples.config.js",
- "buildExamples": "npm run cleanExamples && npm run tscExamples && npm run cpStyles && npm run copyExample && npm run packExamples && npm run clean",
- "cpStyles": "ncp src/styles build/src/styles",
- "copyConfig": "ncp build/src/config.js build/dist/config.js",
- "copyExample": "npm run copyExample_1 && npm run copyExample_2 && npm run copyExample_3 && npm run copyExample_4 && npm run copyExample_5",
- "copyExample_1": "ncp src/examples/single-chain/index.html build/src/examples/single-chain/index.html",
- "copyExample_2": "ncp src/examples/structural-alignment/index.html build/src/examples/structural-alignment/index.html",
- "copyExample_3": "ncp src/examples/assembly/index.html build/src/examples/assembly/index.html",
- "copyExample_4": "ncp src/examples/multiple-chain/index.html build/src/examples/multiple-chain/index.html",
- "copyExample_5": "ncp src/examples/css-config/index.html build/src/examples/css-config/index.html",
- "buildDoc": "npx typedoc --mode file --out docs --exclude src/examples src",
- "clean": "del-cli build/src",
- "cleanAll": "npm run clean && del-cli build/dist",
- "cleanExamples": "del-cli build/examples",
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/rcsb/rcsb-saguaro-3d.git"
- },
- "keywords": [
- "3D",
- "structure",
- "1D",
- "viewer",
- "sequence",
- "annotations",
- "gene",
- "protein",
- "PDB",
- "RCSB",
- "UniProt"
- ],
- "author": "Joan Segura Mora <joan.segura@rcsb.org>",
- "publishConfig": {
- "registry": "https://registry.npmjs.org/"
- },
- "license": "MIT",
- "devDependencies": {
- "@babel/core": "^7.10.4",
- "@babel/plugin-proposal-class-properties": "^7.10.4",
- "@babel/preset-env": "^7.10.4",
- "@types/react": "^17.0.11",
- "@types/react-dom": "^17.0.0",
- "@types/react-select": "^3.0.11",
- "babel-loader": "^8.1.0",
- "concurrently": "^5.3.0",
- "css-loader": "^3.6.0",
- "del-cli": "^3.0.1",
- "file-loader": "^6.2.0",
- "http-server": "^14.0.0",
- "mini-css-extract-plugin": "^0.9.0",
- "ncp": "^2.0.0",
- "node-sass": "^4.14.1",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "react-icons": "^3.11.0",
- "rxjs": "^6.6.6",
- "sass-loader": "^7.3.1",
- "style-loader": "^1.2.1",
- "ts-loader": "^6.2.2",
- "tslib": "^2.0.1",
- "typedoc": "^0.17.8",
- "typescript": "4.0.2",
- "webpack": "^4.44.1",
- "webpack-cli": "^3.3.12"
- },
- "dependencies": {
- "@rcsb/rcsb-molstar": "^2.0.0-dev.8",
- "@rcsb/rcsb-saguaro": "^2.0.0",
- "@rcsb/rcsb-saguaro-api": "^2.1.0",
- "@rcsb/rcsb-saguaro-app": "^3.0.0",
- "molstar": "^2.0.7",
- "react-select": "^3.0.8"
- },
- "bugs": {
- "url": "https://github.com/rcsb/rcsb-saguaro-3d/issues"
- },
- "homepage": "https://rcsb.github.io/rcsb-saguaro-3d",
- "directories": {
- "doc": "docs",
- "example": "cdn-examples"
- }
- }
|