-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2 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
{
"name": "query-lab",
"version": "0.0.1",
"description": "This is a simple program to test concepts and functionalities that may perhaps be added to the Ratel (Dgraph) or Not. The aim of Query Lab is to run queries and have a simplistic design.",
"main": "src/electron.js",
"license": "MIT",
"author": "Micheldiz",
"repository": {
"type": "git",
"url": "git+https://github.com/MichelDiz/Query-Lab.git"
},
"keywords": [
"dgraph",
"graphq",
"lelectron-app",
"http-client"
],
"bugs": {
"url": "https://github.com/MichelDiz/Query-Lab/issues"
},
"scripts": {
"react-start": "parcel -p 3000 index.html --out-dir build",
"react-build": "parcel build index.html --out-dir build --public-url ./",
"electron-build": "electron-builder -mwl",
"clean-build": "rm -rf build/ .cache dist/",
"build": "yarn clean-build && yarn react-build && yarn electron-build",
"start": "concurrently \"cross-env BROWSER=none yarn react-start\" \"wait-on http://localhost:3000 && electron . \""
},
"dependencies": {
"electron-is-dev": "^1.0.1",
"monaco-editor": "^0.16.2",
"react": "^16.8.6",
"react-dock": "^0.2.4",
"react-dom": "^16.8.6",
"react-monaco-editor": "^0.25.1",
"react-tabs": "^3.0.0",
"semantic-ui-css": "^2.4.1",
"styled-components": "^4.2.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"electron": "^4.1.4",
"electron-builder": "^20.39.0",
"parcel-bundler": "^1.12.3",
"wait-on": "^3.2.0"
}
}