forked from jschirrmacher/netvis-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 976 Bytes
/
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
{
"name": "netvis-server",
"version": "1.0.0",
"description": "A simple Node.js application for a NetVis based frontend together with some sample data to provide an example for a quick start for own implementations",
"main": "index.js",
"scripts": {
"start-dev": "forever --watch --watchDirectory . index.js",
"start": "node server",
"test": "eslint *.js"
},
"keywords": [
"netvis",
"network",
"visualization",
"d3js"
],
"author": "[email protected]",
"repository": "https://github.com/jschirrmacher/netvis-server.git",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"faker": "^4.1.0",
"js-netvis": "^5.12.0",
"js-ws-updater": "^1.0.0",
"mongodb": "^3.2.3",
"node-fetch": "^2.5.0",
"stopwords-de": "^0.2.0",
"stopwords-en": "^0.3.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^5.9.0",
"forever": "^1.0.0"
}
}