This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 2.21 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
{
"name": "gremlin-ide",
"version": "0.2.0",
"description": "A development IDE for Tinkerpop enabled graph databases",
"author": "Dave Bechberger",
"homepage": "http://practicalgraph.com",
"license": "MIT",
"main": "main.js",
"scripts": {
"prod": "webpack --config webpack.build.config.js && electron --noDevServer .",
"dev": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js --mode=development",
"build": "webpack --config webpack.build.config.js ",
"package": "webpack --config webpack.build.config.js",
"postpackage": "electron-packager ./ --out=./builds --overwrite --platform=darwin --arch=x64 --icon=./src/assets/icons/mac/gremlin.icns --prune=true",
"package-mac": "electron-packager ./ --out=./builds --overwrite --platform=darwin --arch=x64 --icon=./src/assets/icons/mac/gremlin.icns --prune=true",
"pack": "electron-builder --dir",
"dist": "electron-builder --pd ./builds/gremlin-ide-darwin-x64"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-react": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"css-loader": "^1.0.0",
"electron": "^2.0.6",
"electron-builder": "^20.28.1",
"electron-installer-dmg": "^2.0.0",
"electron-packager": "^12.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"style-loader": "^0.21.0",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@material-ui/core": "^1.4.3",
"@material-ui/icons": "^2.0.2",
"electron-settings": "^3.2.0",
"electron-unhandled": "^1.1.0",
"gremlin": "^2.7.0",
"lodash": "^4.17.10",
"monaco-editor-webpack-plugin": "^1.5.4",
"react-graph-vis": "^1.0.2",
"react-json-view": "^1.19.1",
"react-monaco-editor": "^0.18.0",
"react-table": "^6.8.6",
"roboto-fontface": "^0.10.0"
},
"build": {
"appId": "com.practicalgraph.gremlin-ide",
"win": {
"icon": "https://github.com/practicalgraph/gremlin-ide/blob/master/src/assets/icons/win/gremlin.ico"
}
}
}