-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
60 lines (60 loc) · 1.85 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
{
"name": "genoverse",
"version": "4.0.9",
"description": "Genoverse is a portable, customizable, back-end independent JavaScript and HTML5 based genome browser which allows the user to explore data in a dynamic and interactive manner.",
"main": "src/js/Genoverse.js",
"directories": {
"lib": "src/js",
"test": "test"
},
"scripts": {
"dev": "webpack serve --mode development --env public-path=/dist/",
"test": "jest",
"build": "webpack",
"lint": "eslint '**/*.js'",
"server": "node utils/devServer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DECIPHER-genomics/Genoverse.git"
},
"author": "Simon Brent",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/DECIPHER-genomics/Genoverse/issues"
},
"homepage": "https://decipher-genomics.github.io/Genoverse/",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/runtime-corejs3": "^7.17.2",
"babel-loader": "^8.2.3",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-transform-amd-to-commonjs": "^1.4.0",
"canvas": "^2.8.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-align-assignments": "^1.1.2",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"mini-css-extract-plugin": "^2.6.0",
"terser-webpack-plugin": "^5.3.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.0.0",
"basejs": "^1.1.1",
"core-js": "^3.21.0",
"jParser": "^1.0.2",
"jquery": "^3.6.0",
"jquery-ui": "^1.13.0",
"lodash": "^4.17.21",
"rtree": "^1.4.2"
}
}