-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
108 lines (108 loc) · 3.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@rcsb/rcsb-saguaro-3d",
"version": "4.1.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",
"packApp": "npm run buildApp && npm pack",
"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.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.4",
"@svgr/webpack": "^8.1.0",
"@types/d3-scale": "^4.0.8",
"@types/d3-selection": "^3.0.10",
"@types/d3-zoom": "^3.0.8",
"@types/lodash": "^4.17.7",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@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": "^7.1.2",
"del-cli": "^5.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.9.1",
"ncp": "^2.0.0",
"path-browserify": "^1.0.1",
"raw-loader": "^4.0.2",
"sass": "^1.77.8",
"sass-loader": "^16.0.1",
"stream-browserify": "^3.0.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"tslib": "^2.6.3",
"typedoc": "^0.26.6",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-theme-hierarchy": "^5.0.3",
"typescript": "^5.5.4",
"uniqid": "^5.4.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"rxjs": "^7.5.6"
},
"peerDependencies": {
"@rcsb/rcsb-api-tools": "^4.3.0",
"@rcsb/rcsb-molstar": "^2.10.3",
"@rcsb/rcsb-saguaro": "^3.0.9",
"@rcsb/rcsb-saguaro-app": "^6.2.5",
"molstar": "^4.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"bugs": {
"url": "https://github.com/rcsb/rcsb-saguaro-3d/issues"
},
"homepage": "https://rcsb.github.io/rcsb-saguaro-3d",
"directories": {
"doc": "docs",
"example": "cdn-examples"
}
}