-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "redisgraph-navi",
"description": "RedisGraph Web UI",
"version": "1.0.0-beta.0",
"version_short": "1.0-beta.0",
"type": "module",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "nodemon -r dotenv/config src/app.mjs",
"serve": "npm-run-all build start",
"stop": "lsof -ti :3000 | xargs kill"
},
"homepage": "https://jlefebure.com/",
"author": "Jordan Lefébure",
"contributors": [
"Jordan Lefébure"
],
"keywords": [
"redis",
"redisgraph",
"redisgraph-ui",
"graph"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jlefebure/redisgraph-navi.git"
},
"bugs": {
"url": "https://github.com/jlefebure/redisgraph-navi/issues"
},
"engines": {
"node": ">=10"
},
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "7.1.1",
"@rollup/plugin-replace": "2.3.1",
"npm-run-all": "^4.1.5",
"rollup": "2.1.0",
"rollup-plugin-css-only": "2.0.0",
"rollup-plugin-livereload": "1.0.4",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-svelte": "5.1.1",
"rollup-plugin-svelte-ssr": "1.0.0",
"rollup-plugin-terser": "5.3.0",
"svelte": "3.20.1"
},
"dependencies": {
"body-parser": "1.19.0",
"cors": "2.8.5",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"errorhandler": "1.5.1",
"express": "4.17.1",
"method-override": "3.0.0",
"nodemon": "2.0.2",
"recto": "4.4.1",
"redis": "3.0.2",
"redisgraph.js": "2.0.3",
"svelte-routing": "1.4.2",
"sveltestrap": "3.3.3",
"vis-network": "7.4.0"
}
}