forked from BimberLab/DiscvrLabKeyModules
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.21 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.21 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
{
"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-no-pkg": "npm run clean && cross-env NODE_ENV=development webpack --config ./config/dev.config.js --progress --profile",
"build-dev": "npm run build-no-pkg",
"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",
"prepareCli": "rimraf ./buildCli && rimraf ./resources/external/jb-cli && npm install @jbrowse/cli@1.7.4 --prefix ./buildCli",
"jb-pkg": "npm run prepareCli && npx pkg --outdir=./resources/external/jb-cli ./buildCli/node_modules/@jbrowse/cli && rimraf ./buildCli"
},
"dependencies": {
"@gmod/vcf": "^6.0.9",
"@jbrowse/core": "^3.2.0",
"@jbrowse/product-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/react-linear-genome-view2": "^3.2.0",
"@labkey/api": "^1.39.0",
"@labkey/components": "^6.32.2",
"@mui/x-data-grid": "^7.28.1",
"@yao-pkg/pkg": "^6.3.2",
"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": "^3.0.0",
"jspdf-autotable": "^5.0.2",
"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",
"typescript": "^5.1.6"
}
}