-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
97 lines (97 loc) · 3.02 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
{
"name": "@rcsb/rcsb-saguaro",
"version": "3.1.4",
"description": "RCSB 1D Feature Viewer",
"main": "build/RcsbFv.js",
"files": [
"lib/",
"build/rcsb-saguaro.js"
],
"scripts": {
"devServer": "webpack-dev-server --config webpack.server.dev.config.js",
"build": "webpack --config ./webpack.config.js",
"buildApp": "npm run clean && npm run build-tsc && npm run build-commonjs && npm run build && npm run cpStyles",
"buildAll": "npm run buildApp && npm run buildAllDoc",
"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",
"cpStyles": "ncp src/scss lib/scss && ncp src/scss lib/commonjs/scss",
"buildAllDoc": "npm run buildDoc && npm run cpExamples",
"packApp": "npm run buildApp && npm pack",
"publishApp": "npm publish",
"build-tsc": "tsc",
"build-commonjs": "tsc --build tsconfig.commonjs.json",
"clean": "del-cli lib && del-cli build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/rcsb/rcsb-saguaro.git"
},
"keywords": [
"1D",
"sequence",
"annotations",
"gene",
"protein"
],
"author": "Joan Segura Mora <[email protected]>",
"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",
"@floating-ui/dom": "^1.6.10",
"@svgr/webpack": "^8.1.0",
"@types/d3": "^7.4.3",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/react-transition-group": "^4.4.11",
"@types/uniqid": "^5.3.4",
"babel-loader": "^9.1.3",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"css-loader": "^7.1.2",
"del-cli": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"ncp": "^2.0.0",
"path-browserify": "^1.0.1",
"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.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@d3fc/d3fc-sample": "^5.0.2",
"array-move": "^4.0.0",
"d3": "^7.9.0",
"d3-shape": "^3.2.0",
"react-transition-group": "^4.4.5",
"rxjs": "^7.8.1"
},
"peerDependencies": {
"boxicons": "^2.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"bugs": {
"url": "https://github.com/rcsb/rcsb-saguaro/issues"
},
"homepage": "https://rcsb.github.io/rcsb-saguaro",
"directories": {
"doc": "docs",
"example": "examples"
}
}