123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- {
- "name": "@rcsb/rcsb-saguaro-3d",
- "version": "4.0.0-development.1",
- "description": "RCSB Molstar/Saguaro Web App",
- "main": "build/dist/app.js",
- "files": [
- "build",
- "lib"
- ],
- "scripts": {
- "devServer": "webpack-dev-server --config webpack.server.dev.config.js",
- "build-tsc": "tsc",
- "build-commonjs": "tsc --build tsconfig.commonjs.json",
- "build": "webpack --config ./webpack.config.js",
- "buildAll": "npm run buildApp && npm run buildDoc",
- "buildApp": "npm run clean && npm run build-tsc && npm run build-commonjs && npm run cpStyles && npm run build && npm run copyConfig && npm run copyDef",
- "cpStyles": "ncp src/scss lib/scss",
- "copyConfig": "ncp lib/commonjs/config.js build/config.js",
- "copyDef": "ncp lib/app.d.ts build/app.d.ts",
- "buildDoc": "typedoc --excludeExternals --externalPattern \"**/node_modules/**\" --plugin typedoc-plugin-missing-exports --plugin typedoc-theme-hierarchy --theme hierarchy --entryPointStrategy expand ./src && sed -i '' '/---/d' docs/index.html",
- "clean": "del-cli lib && del-cli build",
- "publishApp": "npm publish --tag development",
- "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.23.3",
- "@babel/plugin-proposal-class-properties": "^7.18.6",
- "@babel/preset-env": "^7.23.3",
- "@svgr/webpack": "^8.1.0",
- "@types/d3-selection": "^3.0.10",
- "@types/d3-zoom": "^3.0.8",
- "@types/lodash": "^4.14.201",
- "@types/react": "^18.2.37",
- "@types/react-dom": "^18.2.15",
- "@types/uniqid": "^5.3.4",
- "babel-loader": "^9.1.3",
- "boxicons": "^2.1.4",
- "buffer": "^6.0.3",
- "crypto-browserify": "^3.12.0",
- "css-loader": "^6.8.1",
- "del-cli": "^5.1.0",
- "file-loader": "^6.2.0",
- "html-webpack-plugin": "^5.5.3",
- "lodash": "^4.17.21",
- "mini-css-extract-plugin": "^2.7.6",
- "ncp": "^2.0.0",
- "path-browserify": "^1.0.1",
- "raw-loader": "^4.0.2",
- "sass": "^1.69.5",
- "sass-loader": "^13.3.2",
- "stream-browserify": "^3.0.0",
- "style-loader": "^3.3.3",
- "ts-loader": "^9.5.0",
- "tslib": "^2.6.2",
- "typedoc": "^0.25.3",
- "typedoc-plugin-missing-exports": "^2.1.0",
- "typedoc-theme-hierarchy": "^4.1.2",
- "typescript": "^5.2.2",
- "uniqid": "^5.4.0",
- "webpack": "^5.89.0",
- "webpack-cli": "^5.1.4",
- "webpack-dev-server": "^4.15.1"
- },
- "dependencies": {
- "rxjs": "^7.5.6"
- },
- "peerDependencies": {
- "@rcsb/rcsb-api-tools": "^4.1.13",
- "@rcsb/rcsb-molstar": "^2.8.0",
- "@rcsb/rcsb-saguaro": "^3.0.3",
- "@rcsb/rcsb-saguaro-app": "^6.0.0",
- "molstar": "^3.40.1",
- "react": "^18.1.0",
- "react-dom": "^18.1.0"
- },
- "bugs": {
- "url": "https://github.com/rcsb/rcsb-saguaro-3d/issues"
- },
- "homepage": "https://rcsb.github.io/rcsb-saguaro-3d",
- "directories": {
- "doc": "docs",
- "example": "cdn-examples"
- }
- }
|