-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) · 4.28 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"version": "0.0.1",
"name": "jbrowse-plugin-isoform-inspector",
"keywords": [
"jbrowse",
"jbrowse2"
],
"main": "dist/index.js",
"module": "dist/jbrowse-plugin-isoform-inspector.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"config": {
"port": 9000,
"browse": {
"port": 8999
},
"jbrowse": {
"plugin": {
"name": "IsoformInspector"
}
}
},
"browserslist": [
"last 1 version",
"> 1%",
"not dead"
],
"scripts": {
"setup": "npm-run-all setup:*",
"setup:file": "ts-node scripts/setup.ts",
"setup:jbrowse": "npm-run-all setup:jbrowse:*",
"setup:jbrowse:clean": "rimraf .jbrowse",
"setup:jbrowse:create": "jbrowse create .jbrowse",
"clean": "rimraf dist",
"start": "npm-run-all --sequential clean --parallel start:*",
"start:watch": "cross-env JB_NPM=false rollup --config --watch",
"start:server": "serve --cors --listen $npm_package_config_port .",
"prebuild": "npm-run-all clean",
"build": "rollup --config",
"browse": "npm-run-all jbrowse:*",
"jbrowse:configure": "shx cp config.json .jbrowse/config.json && shx cp cypress/fixtures/loaded.json .jbrowse/loaded.json",
"jbrowse:serve": "cross-var serve --listen $npm_package_config_browse_port .jbrowse",
"test": "jest",
"test:e2e": "cross-var start-test \"npm-run-all --parallel start browse\" \"$npm_package_config_port|$npm_package_config_browse_port\" \"npm-run-all cypress:run\"",
"cypress:run": "cross-var cypress run --headless --browser chrome --config baseUrl=http://localhost:$npm_package_config_browse_port",
"cypress:open": "cross-var cypress open --config baseUrl=http://localhost:$npm_package_config_browse_port",
"lint": "eslint --ext .js,.ts,.jsx,.tsx src/",
"prepublishOnly": "npm-run-all test",
"prepare": "npm-run-all build",
"postversion": "git push --follow-tags"
},
"jbrowse-plugin": {
"name": "IsoformInspector"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@nivo/bar": "0.79.0",
"@nivo/core": "0.79.0",
"@nivo/heatmap": "0.79.0",
"@nivo/tooltip": "0.79.0",
"regenerator-runtime": "^0.13.9",
"tslib": "^2.4.0"
},
"peerDependencies": {
"@jbrowse/core": "^1.5.2"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-react": "^7.10.4",
"@emotion/react": "^11.10.4",
"@greenelab/hclust": "^0.0.1",
"@jbrowse/cli": "^1.5.1",
"@jbrowse/core": "^2.0.0",
"@jbrowse/development-tools": "^2.0.0",
"@mui/material": "^5.10.5",
"@mui/system": "^5.10.5",
"@mui/x-data-grid": "^5.17.3",
"@schemastore/package": "^0.0.6",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/node": "^16.11.13",
"@types/react": "^17.0.0",
"@types/testing-library__jest-dom": "^5.14.2",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"@visx/event": "^2.6.0",
"@visx/shape": "^2.12.2",
"babel-eslint": "^10.0.0",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"cross-var": "^1.1.0",
"cypress": "12.11.0",
"d3-hierarchy": "^3.1.2",
"eslint": "^7.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^27.4.5",
"ml-hclust": "^3.1.0",
"mobx": "^6.0.0",
"mobx-react": "^7.0.0",
"mobx-state-tree": "5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-scripts": "^5.0.1",
"react-spinners": "^0.13.6",
"rimraf": "^3.0.2",
"rollup": "^2.59.0",
"rxjs": "^6.0.0",
"serve": "^11.3.2",
"shx": "^0.3.3",
"start-server-and-test": "^1.11.7",
"ts-jest": "^27.1.1",
"ts-node": "^10.3.0",
"tss-react": "^3.0.0",
"typescript": "^4.1.3"
},
"private": true
}