-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.46 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
{
"name": "graphiql-ui",
"version": "0.4.0",
"description": "A minimal, electron-based, desktop user interface for the GraphiQL IDE",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "webpack",
"watch": "webpack -p --progress --watch",
"pack": "electron-packager . --out=./bin --overwrite --asar",
"pack32": "electron-packager . --out=./bin --arch=ia32 --overwrite --asar",
"pack64": "electron-packager . --out=./bin --arch=x64 --overwrite --asar",
"release": "npm install && npm run build && npm run pack",
"release32": "npm install && npm run build && npm run pack32",
"release64": "npm install && npm run build && npm run pack64"
},
"repository": "https://github.com/faazshift/graphiql-ui",
"keywords": [
"graphql",
"graphiql"
],
"author": "Brendan Warkentin <faazshift@gmail.com>",
"license": "MIT",
"dependencies": {
"electron": "^1.4.15",
"graphiql": "^0.9.3",
"graphql": "^0.9.1",
"material-ui": "^0.17.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-tap-event-plugin": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"css-loader": "^0.26.2",
"electron-packager": "^8.5.2",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.10.1",
"node-sass": "^4.5.0",
"sass-loader": "^6.0.2",
"webpack": "^2.2.1"
}
}