-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.14 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.14 KB
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
{
"name": "jbrowse-lk",
"version": "1.0.0",
"private": true,
"scripts": {
"setup": "npm ci",
"build": "npm run build-dev",
"start": "cross-env NODE_ENV=development webpack serve --config ./config/watch.config.js",
"build-dev": "npm run clean && cross-env NODE_ENV=development webpack --config ./config/dev.config.js --progress --profile",
"build-prod": "npm run clean && cross-env NODE_ENV=production PROD_SOURCE_MAP=source-map webpack --config ./config/prod.config.js --progress --profile",
"clean": "rimraf resources/web/gen && rimraf resources/web/jbrowse/gen && rimraf resources/views/gen",
"jb-sea:fetch": "node ./resources/external/fetch-jbrowse-bundle.mjs",
"jb-sea:build": "node ./resources/external/build-sea.mjs ./resources/external/jbrowse.js",
"jb-sea": "npm run jb-sea:fetch && npm run jb-sea:build"
},
"dependencies": {
"@gmod/vcf": "^6.0.9",
"@jbrowse/core": "^3.2.0",
"@jbrowse/plugin-linear-genome-view": "^3.2.0",
"@jbrowse/plugin-svg": "^3.2.0",
"@jbrowse/plugin-variants": "^3.2.0",
"@jbrowse/product-core": "^3.2.0",
"@jbrowse/react-linear-genome-view2": "^3.2.0",
"@labkey/api": "^1.39.0",
"@labkey/components": "^6.32.2",
"@mui/x-data-grid": "^7.28.1",
"assert": "^2.1.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"child_process": "^1.0.2",
"fs": "^0.0.1-security",
"jquery": "^3.7.1",
"jspdf": "^4.1.0",
"jspdf-autotable": "^5.0.7",
"node-polyfill-webpack-plugin": "4.1.0",
"path-browserify": "^1.0.1",
"react": "^18.3.0",
"react-data-grid": "7.0.0-beta.46",
"react-dom": "^18.3.0",
"react-google-charts": "^5.2.1",
"react-select": "^5.10.1",
"regenerator-runtime": "^0.14.1",
"stream-browserify": "^3.0.0",
"util": "^0.12.5",
"uuid": "^11.1.0",
"vm-browserify": "^1.1.2"
},
"devDependencies": {
"@labkey/build": "^8.4.0",
"@types/jexl": "^2.3.4",
"@types/jquery": "^3.5.32",
"@types/node": "^20.14.11",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"rimraf": "^6.0.1",
"tar": "^7.5.7",
"typescript": "^5.1.6",
"unzipper": "^0.12.3"
}
}