-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.06 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
{
"name": "dash_jbrowse",
"version": "1.4.2",
"description": "Dash components for JBrowse 2",
"repository": "GMOD/dash_jbrowse",
"homepage": "https://github.com/GMOD/dash_jbrowse",
"scripts": {
"start": "webpack --mode development --watch",
"lint": "eslint --report-unused-disable-directives --max-warnings 0 --ext .js,.ts,.jsx,.tsx src/lib/",
"validate-init": "python _validate_init.py",
"prepublishOnly": "npm run validate-init",
"build:js": "webpack --mode production",
"build:backends": "dash-generate-components ./src/lib/components dash_jbrowse -p package-info.json --r-prefix 'R' --jl-prefix 'julia'",
"build:backends-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:backends)",
"build": "npm run build:js && npm run build:backends",
"build:activated": "npm run build:js && npm run build:backends-activated"
},
"author": "Elliot Hershberg <eahershberg@gmail.com>",
"contributors": [
{
"name": "Teresa De Jesus Martinez",
"email": "tere486martinez@gmail.com"
},
{
"name": "Colin Diesh",
"email": "colin.diesh@gmail.com"
}
],
"license": "Apache-2.0",
"dependencies": {
"@jbrowse/react-circular-genome-view": "^2.1.5",
"@jbrowse/react-linear-genome-view": "^2.1.5"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.23.0",
"@plotly/dash-component-plugins": "^1.2.0",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"babel-loader": "^9.1.2",
"eslint": "^8.49.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-unicorn": "^49.0.0",
"node-polyfill-webpack-plugin": "^3.0.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-docgen": "^5.0.1",
"react-dom": "^18.2.0",
"typescript": "^5.3.3",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.1"
}
}