forked from epam/mriviewer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 2.73 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "med3web",
"version": "0.0.7",
"description": "Med3web - Dicom 2D/3D Web viewer",
"author": "EPAM Systems",
"private": true,
"engines": {
"node": ">=6.10.3"
},
"license": "Apache License, ver. 2.0.",
"scripts": {
"build": "gulp build",
"lint": "gulp lint:js",
"start": "gulp serve",
"test": "gulp test",
"preversion": "gulp lint && gulp test"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-modules-systemjs": "^6.24.1",
"babel-plugin-wildcard": "^1.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.5.2",
"babelify": "^7.3.0",
"browser-sync": "^2.2.1",
"browserify": "^14.3.0",
"chai": "^4.1.2",
"coveralls": "^2.13.0",
"del": "^2.2.0",
"dirty-chai": "^2.0.1",
"eslint": "^4.7.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"express": "^4.16.2",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.0.1",
"gulp-babel": "^7.0.1",
"gulp-babel-istanbul": "^1.6.0",
"gulp-cache": "^0.4.2",
"gulp-coveralls": "^0.1.4",
"gulp-cssnano": "^2.0.0",
"gulp-eslint": "^4.0.0",
"gulp-filter": "^4.0.0",
"gulp-htmlmin": "^3.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.0.1",
"gulp-istanbul": "^1.1.1",
"gulp-jsdoc3": "^1.0.1",
"gulp-load-plugins": "^1.2.4",
"gulp-mocha": "5.0.0",
"gulp-plumber": "^1.0.1",
"gulp-sass": "^4.0.1",
"gulp-size": "^2.1.0",
"gulp-sourcemaps": "^2.2.0",
"gulp-stylelint": "^3.9.0",
"gulp-uglify-es": "^1.0.4",
"gulp-useref": "^3.0.0",
"gulp-util": "^3.0.8",
"jsdoc-babel": "^0.3.0",
"jsdoc-export-default-interop": "^0.3.1",
"mocha": "^5.2.0",
"node-resemble-js": "^0.2.0",
"run-sequence": "^1.2.2",
"selenium-webdriver": "^3.5.0",
"sinon": "^2.1.0",
"system": "^1.3.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.4"
},
"dependencies": {
"bootstrap": "^3.3.7",
"c3": "^0.4.17",
"d3": "^3.5.17",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"jspdf": "^1.3.5",
"jspdf-autotable": "^2.3.2",
"node-sass": "^4.10.0",
"nouislider": "^11.1.0",
"preprocessify": "^1.0.1",
"spin": "0.0.1",
"sweetalert": "^2.0.8",
"three": "^0.98.0",
"wnumb": "^1.1.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"rules": {
"quotes": [
2,
"single"
]
}
}
}