-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
117 lines (117 loc) · 4.04 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
109
110
111
112
113
114
115
116
117
{
"name": "@rcsb/rcsb-saguaro-app",
"version": "6.3.3",
"description": "RCSB 1D Saguaro Web App",
"main": "build/app.js",
"files": [
"build",
"lib"
],
"scripts": {
"devServer": "webpack-dev-server --config webpack.server.dev.config.js",
"buildAll": "npm run buildApp && npm run buildAllDoc",
"buildOnlyApp": "npm run build-tsc && npm run build-commonjs && npm run copyQueries && npm run copyCss && npm run build && npm run copyConfig",
"buildApp": "npm run clean && npm run checkQueries && npm run buildOnlyApp",
"buildAppDev": "npm run clean && npm run checkQueries && npm run buildDev",
"build": "webpack --config ./webpack.config.js",
"checkQueries": "ts-node src/RcsbQueries/QueryCheck.ts",
"copyQueries": "npm run copyBorregoQueries && npm run copyYosemiteQueries",
"copyBorregoQueries": "ncp src/RcsbQueries/Borrego lib/RcsbQueries/Borrego && ncp src/RcsbQueries/Borrego lib/commonjs/RcsbQueries/Borrego",
"copyYosemiteQueries": "ncp src/RcsbQueries/Yosemite lib/RcsbQueries/Yosemite && ncp src/RcsbQueries/Yosemite lib/commonjs/RcsbQueries/Yosemite",
"copyConfig": "ncp lib/commonjs/RcsbServerConfig/ServerConfig.js build/config.js",
"copyCss": "ncp src/scss lib/scss && ncp src/scss lib/commonjs/scss",
"build-tsc": "tsc",
"build-commonjs": "tsc --build tsconfig.commonjs.json",
"clean": "del-cli lib && del-cli build",
"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",
"cpExamples": "ncp examples docs/examples",
"buildAllDoc": "npm run buildDoc && npm run cpExamples",
"publishApp": "npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/rcsb/rcsb-saguaro-app.git"
},
"keywords": [
"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.3",
"@svgr/webpack": "^8.1.0",
"@types/lodash": "^4.17.7",
"@types/lodash.range": "^3.2.9",
"@types/object-hash": "^3.0.6",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/uniqid": "^5.3.4",
"babel-loader": "^9.1.3",
"bootstrap": "^5.3.3",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"css-loader": "^7.1.2",
"del-cli": "^5.1.0",
"graphql-request": "^6.1.0",
"html-webpack-plugin": "^5.6.0",
"lodash": "^4.17.21",
"ncp": "^2.0.0",
"object-hash": "^3.0.0",
"path-browserify": "^1.0.1",
"raw-loader": "^4.0.2",
"react-draggable": "^4.4.6",
"sass": "^1.77.8",
"sass-loader": "^16.0.1",
"stream-browserify": "^3.0.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"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.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@rcsb/rcsb-charts": "^0.2.24",
"@rcsb/rcsb-saguaro": "^3.1.4",
"@rcsb/rcsb-search-tools": "^0.0.14",
"ideogram": "^1.47.0",
"react-bootstrap": "^2.10.4",
"react-select": "^5.8.0",
"rxjs": "^7.8.1",
"string-to-color": "^2.2.2"
},
"peerDependencies": {
"@rcsb/rcsb-api-tools": "^4.3.0",
"boxicons": "^2.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"bugs": {
"url": "https://github.com/rcsb/rcsb-saguaro-app/issues"
},
"homepage": "https://rcsb.github.io/rcsb-saguaro-app",
"directories": {
"doc": "docs",
"example": "examples"
}
}