-
Notifications
You must be signed in to change notification settings - Fork 337
/
package.json
124 lines (124 loc) · 3.54 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "graphiql-app",
"productName": "GraphiQL",
"version": "0.7.2",
"description": "A light, Electron-based wrapper around GraphiQL.",
"main": "main.js",
"scripts": {
"dev-server": "webpack-dev-server --config webpack/webpack-dev-server.config.js --progress --colors --port 2992 --inline",
"hot-dev-server": "webpack-dev-server --config webpack/webpack-hot-dev-server.config.js --hot --progress --colors --port 2992 --inline",
"build-dev": "webpack --config webpack/webpack.config.js --progress --profile --colors",
"build": "webpack --config webpack/webpack.config.production.js --progress --profile --colors",
"start": "electron .",
"start-dev": "NODE_ENV=development electron .",
"start-hot": "HOT=1 NODE_ENV=development electron .",
"package": "build --dir",
"dist-clean": "rm -rf ./dist ./release",
"dist": "build -mwl",
"release": "yarn dist-clean && yarn build && build -mwl",
"test": "npm run build",
"postinstall": "electron-builder install-app-deps"
},
"author": "Adam Miskiewicz <[email protected]> (http://github.com/skevy)",
"license": "MIT",
"homepage": "https://github.com/skevy/graphiql-app",
"bugs": {
"url": "https://github.com/skevy/graphiql-app/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/skevy/graphiql-app.git"
},
"dependencies": {
"graphiql": "^0.12.0",
"graphql": "^0.13.2",
"lodash": "^4.17.13",
"mousetrap": "^1.5.3",
"object-assign": "^4.0.1",
"prop-types": "^15.6.0",
"radium": "^0.14.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-modal": "^2.0.2",
"uuid": "^3.1.0"
},
"devDependencies": {
"asar": "^0.13.0",
"babel-core": "^6.25.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"css-loader": "^0.19.0",
"del": "^2.0.2",
"electron-builder": "^20.33.2",
"electron-packager": "^12.2.0",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.4",
"github-latest-release": "^0.1.1",
"html-loader": "^0.3.0",
"ignore-loader": "^0.1.2",
"json-loader": "^0.5.3",
"loaders-by-extension": "^1.0.0",
"minimist": "^1.2.0",
"mocha": "^2.5.3",
"raw-loader": "^0.5.1",
"react-hot-loader": "^1.3.0",
"spectron": "^3.2.3",
"stats-webpack-plugin": "^0.2.2",
"style-loader": "^0.12.4",
"url-loader": "^0.5.6",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.12.2",
"webpack-target-electron-renderer": "^0.4.0"
},
"build": {
"directories": {
"output": "release"
},
"publish": [
{
"provider": "github",
"owner": "skevy",
"repo": "graphiql-app"
}
],
"asar": true,
"appId": "com.sk3vy.graphiql-app",
"dmg": {
"contents": [
{
"x": 410,
"y": 168,
"type": "link",
"path": "/Applications"
},
{
"x": 104,
"y": 168,
"type": "file"
}
]
},
"mac": {
"category": "public.app-category.developer-tools"
},
"linux": {
"category": "Development",
"target": [
"AppImage"
]
},
"nsis": {
"perMachine": true
}
}
}