-
-
Notifications
You must be signed in to change notification settings - Fork 192
/
package.json
96 lines (96 loc) · 3.55 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
{
"name": "dash-bio",
"version": "1.0.2",
"description": "Dash components for bioinformatics",
"repository": {
"type": "git",
"url": "[email protected]:plotly/dash-bio.git"
},
"bugs": {
"url": "https://github.com/plotly/dash-bio/issues"
},
"homepage": "https://github.com/plotly/dash-bio",
"main": "build/index.js",
"scripts": {
"format:test": "prettier --config .prettierrc --list-different \"{src/**/, src/lib/components/}*.js\"",
"format": "prettier --config .prettierrc --write \"{src/**/, src/lib/components/}*.js\"",
"lint": "eslint src --fix && npm run format",
"test": "npm run lint && npm run format:test && npm run test-unit",
"test-unit": "jest",
"build:js": "npm run lint && webpack --mode production",
"build:backends": "dash-generate-components ./src/lib/components dash_bio -p package-info.json --r-prefix='dashbio' --r-imports='dash' --r-depends='manhattanly'",
"build": "npm run build:js && npm run build:backends",
"postbuild": "es-check es2015 dash_bio/*.js"
},
"author": "The Plotly Team <[email protected]>",
"maintainer": "Hammad Khan <[email protected]>",
"license": "MIT",
"dependencies": {
"circos": "git+https://github.com/plotly/circosJS.git#matthewchan15-zoom-pan-svg",
"fast-memoize": "^2.5.1",
"fornac": "git+https://github.com/plotly/fornac.git#794ebd47766a8cff2020d83a5f9071201ef59d31",
"ideogram": "^1.16.0",
"igv": "2.6.8",
"jsme-react": "git+https://github.com/nickmelnikov82/jsme-react.git#51d3c66279848eec049e0e52f6222381c3456007",
"molecule-2d-for-react": "git+https://github.com/plotly/molecule-2d-for-react.git#b281d52610677a7c47e02911e186e9d35417e37a",
"molecule-3d-for-react": "git+https://github.com/plotly/molecule-3d-for-react.git#c0f527d9ae1156bb0932790a683c74604100cd32",
"ngl": "^0.10.4",
"pileup": "0.7.0",
"plotly.js": "^1.52.2",
"ramda": "^0.26.0",
"react": "16.13.0",
"react-alignment-viewer": "git+https://github.com/plotly/react-alignment-viewer.git#475c55a",
"react-dom": "16.13.0",
"react-oncoprint": "^1.2.3",
"react-plotly.js": "^2.4.0",
"react-sequence-viewer": "git+https://github.com/plotly/react-sequence-viewer.git",
"speck": "git+https://github.com/plotly/speck.git#1e4e11f59b831f295a2187637cdbb1aa1172eaae"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/eslint-parser": "7.19.1",
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^29.3.1",
"babel-loader": "^8.2.5",
"copyfiles": "^2.4.1",
"css-loader": "^6.7.1 ",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"es-check": "^7.0.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"jest": "^26.0.0",
"jest-canvas-mock": "^2.2.0",
"jest-raw-loader": "^1.0.1",
"prettier": "^2.7.1",
"react-docgen": "^3.0.0",
"react-test-renderer": "^16.12.0",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-serve": "^4.0.0"
},
"peerDependencies": {
"react": ">=0.14",
"react-dom": ">=0.14"
},
"files": [
"dash_bio/bundle.js",
"dash_bio/dash_bio-shared.js",
"dash_bio/async-*.js"
],
"browserslist": [
"last 7 years and not dead"
],
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}