forked from lars-kolbowski/spectrum
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.92 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
{
"name": "xispec",
"version": "2.1.0",
"description": "visualisation of mass spectrometry data",
"author": {
"name": "Lars Kolbowski",
"email": "[email protected]"
},
"contributors": [
{
"name": "Lars Kolbowski",
"email": "[email protected]"
},
{
"name": "Colin Combe",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:Rappsilber-Laboratory/xiSPEC_spectrumViewer.git"
},
"bugs": {
"url": "https://github.com/Rappsilber-Laboratory/xiSPEC_spectrumViewer/issues"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"eslint": "^7.30.0",
"file-loader": "^6.2.0",
"style-loader": "^1.2.1",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-dev-server": "^3.11.0",
"prettier-eslint-cli": "^5.0.1"
},
"scripts": {
"build-dev": "webpack -d --mode development --config webpack.dev.js",
"build-prod": "webpack -p --mode production --config webpack.prod.js",
"start:dev": "webpack-dev-server --open --config webpack.dev.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier-eslint --write \"src/**/*.js\""
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"core-js": "~3.14.0",
"jquery": "~3.4.1",
"jsonview": "~1.2.0",
"webpack-jquery-ui": "~2.0.1",
"datatables.net": "~1.11.2",
"datatables.net-dt": "~1.11.2",
"d3": "~3.5.5",
"underscore": "^1.13.1",
"backbone": "~1.4.0",
"split.js": "~1.6.4",
"spin": "^0.0.1",
"@eastdesire/jscolor": "~2.4.6",
"colorbrewer": "~1.3.0"
},
"keywords": [
"mass spectrometry",
"visualisation",
"crosslinking"
],
"main": "./src/main.js"
}