-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
95 lines (95 loc) · 2.56 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
{
"name": "grnsight",
"version": "7.1.2",
"description": "Web app and service for visualizing models of gene regulatory networks",
"directories": {
"test": "test"
},
"dependencies": {
"body-parser": "1.18.2",
"canvg": "2.0.0",
"cors": "2.8.1",
"cytoscape": "2.7.14",
"d3-v4-grid": "2.0.1",
"dotenv": "8.2.0",
"errorhandler": "1.5.0",
"express": "4.16.0",
"fs": "0.0.1-security",
"googleapis": "1.1.5",
"http": "0.0.0",
"jspdf": "1.5.3",
"method-override": "2.3.10",
"moment": "2.24.0",
"morgan": "1.9.1",
"multiparty": "4.2.2",
"node-xlsx": "0.7.2",
"nodemon": "1.19.1",
"parallelshell": "3.0.1",
"pg": "8.0.3",
"pg-hstore": "2.3.3",
"pug": "3.0.2",
"querystring": "0.2.0",
"save-svg-as-png": "1.4.14",
"sequelize": "5.21.6",
"serve-static": "1.13.1",
"should": "11.2.0",
"stylus": "0.54.5",
"supertest": "3.0.0",
"url": "0.11.0",
"webpack": "4.0.0",
"xml2js": "0.4.17",
"xmlbuilder": "8.2.2"
},
"devDependencies": {
"browser-env": "3.3.0",
"chai": "4.1.2",
"coveralls": "2.13.1",
"eslint": "3.19.0",
"isomorphic-fetch": "2.2.1",
"istanbul": "0.4.5",
"jquery": "3.6.0",
"jquery-extend": "2.0.3",
"jsdom": "13.2.0",
"markdown-pdf": "8.0.0",
"mocha": "2.5.3",
"mocha-lcov-reporter": "1.3.0",
"nock": "10.0.6",
"sinon": "5.1.1",
"w3c-xmlserializer": "1.0.1",
"webpack-cli": "2.0.14",
"xmlserializer": "0.6.1"
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"webpack-start": "webpack --watch",
"test": "mocha --reporter list --compilers js:babel-core/register",
"start-dev": "parallelshell --wait \"nodemon web-client/app.js\" \"nodemon server/app.js\" \"webpack --watch --mode=development\"",
"start-prod": "parallelshell --wait \"nodemon web-client/app.js\" \"nodemon server/app.js\" \"webpack --watch --mode=production\"",
"coverage": "istanbul cover _mocha",
"lint": "eslint \"**/*.js\"",
"coveralls": "npm run coverage -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dondi/GRNsight.git"
},
"keywords": [
"biojs",
"GRN",
"gene regulatory networks",
"network",
"visualization",
"network visualization",
"force graph visualization"
],
"author": "LMU Bioinformatics Group",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dondi/GRNsight/issues"
},
"homepage": "http://dondi.github.io/GRNsight/"
}