-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
83 lines (83 loc) · 2.81 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "synvisio",
"version": "0.0.1",
"description": "Interactive Multiscale Visualization Tool for Exploring Syteny",
"main": "src/app.js",
"keywords": [
"synteny",
"visualization",
"whole-genome",
"react",
"redux",
"d3"
],
"scripts": {
"start": "webpack-dev-server --config ./build-config/webpack.config.js",
"build": "webpack -p --config ./build-config/webpack.prod.config.js",
"clean": "rimraf build/assets/bundle/*",
"deploy": "npm run clean && npm run build && npm run deploy-gh",
"deploy-gh": "gh-pages -d build"
},
"author": "kiranbandi",
"license": "MIT",
"homepage": "https://github.com/kiranbandi/mcscanx-synteny-visualizer#readme",
"dependencies": {
"@kiranbandi/snapshot": "^1.2.0",
"axios": "^0.21.2",
"canvg": "^3.0.6",
"computed-style-to-inline-style": "^3.0.0",
"d3": "^5.5.0",
"d3-selection": "^1.4.1",
"d3-svg-legend": "^2.25.6",
"file-saver": "^2.0.2",
"html2canvas": "^1.0.0-rc.5",
"immutability-helper": "^3.0.1",
"lodash": "^4.17.21",
"rc-slider": "^8.7.1",
"react": "^16.13.1",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^16.13.1",
"react-image-carousel": "^2.0.18",
"react-loading": "^2.0.3",
"react-redux": "^5.0.7",
"react-router": "^3.0.5",
"react-transition-group": "^4.4.1",
"react-youtube": "^7.8.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"save-svg-as-png": "^1.4.17",
"toastr": "^2.1.4",
"uniqid": "^5.0.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-es2015-modules-amd": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"gh-pages": "^1.2.0",
"html-webpack-harddisk-plugin": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^3.2.0",
"redux-devtools-extension": "^2.13.2",
"resolve-url-loader": "^2.3.0",
"rimraf": "^3.0.2",
"sass": "^1.48.0",
"sass-loader": "^7.3.1",
"style-loader": "^0.21.0",
"terser-webpack-plugin": "^3.0.7",
"uglify-js": "^3.6.0",
"url-loader": "^1.0.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.7",
"webpack-dev-server": "^3.1.4",
"workerize-loader": "^1.0.4"
}
}