forked from kiranbandi/haplotype-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.3 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
{
"name": "@kiranbandi/hapmap",
"version": "0.0.2",
"description": "A library for visualizing haplotype data.",
"main": "dist/bundle/hapmap.js",
"repository": "[email protected]:kiranbandi/hapmap.git",
"keywords": [
"visualization",
"matrix",
"genotype",
"haplotype",
"allele",
"SNPs"
],
"scripts": {
"start": "webpack-dev-server --config ./build-config/webpack.config.js --watch-poll",
"build": "npm run clean && npm run build-code",
"build-code": "webpack -p --config ./build-config/webpack.prod.config.js",
"clean": "rimraf dist/bundle/*",
"release": "npm run build",
"test": "echo \"No test specified\""
},
"author": "kiranbandi <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"d3": "^5.5.0",
"interactjs": "^1.9.22",
"jquery": "^3.5.1",
"lodash": "^4.17.10",
"node-sass": "^4.14.1",
"rc-slider": "^9.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-loading": "^2.0.3",
"react-redux": "^5.0.7",
"react-select": "^3.1.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"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",
"expose-loader": "^1.0.0",
"file-loader": "^1.1.11",
"gh-pages": "^1.2.0",
"html-webpack-harddisk-plugin": "^1.0.2",
"html-webpack-plugin": "^4.4.1",
"image-webpack-loader": "^3.2.0",
"npm-install-webpack-plugin": "^4.0.5",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"terser-webpack-plugin": "^3.0.7",
"url-loader": "^1.0.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.7",
"webpack-dev-server": "^3.1.4",
"workerize-loader": "^1.3.0"
}
}