This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
forked from LCSB-BioCore/Fractal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.59 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
{
"name": "@thehyve/fractalis",
"description": "The front-end component of the Fractalis visual analytics project - version with improvements and features developed at The Hyve.",
"version": "1.4.1-hyve",
"author": "Sascha Herzinger <sascha.herzinger@uni.lu>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/thehyve/Fractal.js/issues",
"email": "ewelina@thehyve.nl"
},
"repository": {
"type": "git",
"url": "https://github.com/thehyve/Fractal.js"
},
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"create-es6-export-file": "printf 'export ' | cat - lib/fractal.js > lib/fractal-es6-export.js",
"prepublishOnly": "npm run-script build && npm run-script create-es6-export-file",
"devserver": "webpack-dev-server --config webpack.config.js --mode development",
"test": "karma start karma.conf.js"
},
"publishConfig": {
"access": "public"
},
"main": "lib/fractal-es6-export.js",
"dependencies": {
"@babel/runtime": "7.0.0-beta.46",
"axios": "^0.19.0",
"d3": "4.13.0",
"deep-freeze-strict": "1.1.1",
"html2canvas": "1.0.0-alpha.12",
"lodash": "^4.17.15",
"resize-observer-polyfill": "1.5.0",
"tippy.js": "3.0.6",
"uuid": "3.2.1",
"vue": "2.5.13",
"vue-async-computed": "3.3.1",
"vuex": "3.0.1"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.46",
"@babel/plugin-transform-runtime": "7.0.0-beta.46",
"@babel/preset-env": "7.0.0-beta.46",
"babel-loader": "8.0.0-beta.2",
"base64-inline-loader": "1.1.1",
"css-loader": "1.0.0",
"devbridge-autocomplete": "1.4.7",
"eslint": "4.17.0",
"eslint-config-standard": "11.0.0",
"eslint-plugin-html": "4.0.2",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "6.0.0",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"file-loader": "1.1.6",
"jasmine-core": "3.1.0",
"jsdoc": "^3.6.3",
"karma": "^4.4.1",
"karma-firefox-launcher": "1.1.0",
"karma-jasmine": "1.1.1",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "3.0.0",
"materialize-css": "1.0.0",
"node-sass": "^4.13.0",
"npm": "^6.13.1",
"object-path": "0.11.4",
"sass-loader": "6.0.6",
"style-loader": "0.20.2",
"url-loader": "0.6.2",
"vue-loader": "14.1.1",
"vue-style-loader": "4.0.2",
"vue-template-compiler": "2.5.13",
"webpack": "4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"yargs": "^15.0.2"
}
}