-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.02 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
{
"version": "2.1.0",
"license": "MIT",
"author": "Colin Diesh",
"name": "jbrowse-plugin-gwas",
"description": "JBrowse 2 GWAS API plugin",
"repository": "github:cmdcolin/jbrowse-plugin-gwas",
"keywords": [
"jbrowse",
"jbrowse2"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist",
"format": "yarn prettier --write .",
"prebuild": "yarn clean",
"start": "node esbuild.mjs",
"build": "tsc && NODE_ENV=production node esbuild.mjs",
"postbuild": "cp distconfig.json dist/config.json",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"preversion": "yarn build",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-react": "^7.10.4",
"@emotion/react": "^11.10.4",
"@eslint/js": "^9.15.0",
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
"@jbrowse/cli": "^2.6.1",
"@jbrowse/core": "^2.6.1",
"@jbrowse/plugin-linear-genome-view": "^2.17.0",
"@jbrowse/plugin-wiggle": "^2.17.0",
"@mui/material": "^6.1.4",
"@mui/system": "^6.1.4",
"@mui/x-data-grid": "^7.6.1",
"@schemastore/package": "^0.0.10",
"@types/node": "^22.7.6",
"@types/rbush": "^4.0.0",
"@types/react": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"esbuild": "^0.24.0",
"eslint": "^9.15.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-unicorn": "^56.0.1",
"mobx": "^6.0.0",
"mobx-react": "^9.1.0",
"mobx-state-tree": "5.4.0",
"prettier": "^3.4.1",
"pretty-bytes": "^6.1.1",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"tss-react": "^4.8.6",
"typescript": "^5.3.3",
"typescript-eslint": "^8.16.0"
}
}