-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (92 loc) · 2.53 KB
/
package.json
File metadata and controls
93 lines (92 loc) · 2.53 KB
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
{
"name": "whoshacking",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"server": "node_modules/.bin/webpack-dev-server --host localhost --port 8081",
"start": "ELECTRON_ENV=development electron .",
"startprod": "npm run buildwebpack && ELECTRON_ENV=production electron .",
"buildwebpack": "node_modules/.bin/webpack --config=webpack.config.js --env=production",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"apppublish": "electron-builder -p onTagOrDraft"
},
"build": {
"appId": "co.liamz.whoshacking",
"productName": "Who's Hacking",
"copyright": "Copyright © 2018 Liam Zebedee Edwards-Playne",
"files": [
"static/",
"vendor/",
"build/",
"static/",
"index.html",
"main.js",
"renderer.js"
],
"asarUnpack": [
"vendor/"
]
},
"publish": {
"provider": "github",
"repo": "https://github.com/liamzebedee/whoshacking",
"owner": "liamzebedee",
"releaseType": "draft"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"electron": "~1.7.8",
"electron-builder": "^19.56.0",
"electron-rebuild": "^1.7.3"
},
"dependencies": {
"arch": "^2.1.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-react-css-modules": "^3.3.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-styles": "^0.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"bufferutil": "^3.0.3",
"chokidar": "^2.0.0",
"css-loader": "^0.28.9",
"d3-request": "^1.0.6",
"draft-js": "^0.10.5",
"electron-log": "^2.2.14",
"electron-updater": "^2.20.1",
"jquery": "^3.3.1",
"mobx": "^3.4.1",
"mobx-react": "^4.3.5",
"mobx-react-devtools": "^4.2.15",
"moment": "^2.20.1",
"normalize.css": "^7.0.0",
"postcss": "^6.0.16",
"react": "^16.2.0",
"react-autosize-textarea": "^3.0.2",
"react-dom": "^16.2.0",
"react-flip-move": "^3.0.1",
"socket.io-client": "^2.0.4",
"store2": "^2.6.0",
"style-loader": "^0.20.1",
"superagent": "^3.8.2",
"underscore": "^1.8.3",
"utf-8-validate": "^4.0.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
}
}