-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name": "4-hour-app",
"version": "1.0.0",
"description": "A companion app for 4 Hour Workweek by Tim Ferriss",
"main": "index.js",
"scripts": {
"start": "ENV=development electron .",
"dev": "concurrently -k 'babel-node server.js' 'npm start'",
"build": "webpack --config webpack.config.production.js && electron-packager . HackerNews --platform=darwin --arch=all --prune --overwrite --icon ./HN_icon"
},
"keywords": [
"Electron",
"4",
"four",
"hour",
"workweek"
],
"author": "TrillCyborg",
"license": "CC0-1.0",
"dependencies": {
"debounce": "^1.0.0",
"electron": "^1.4.8",
"material-ui": "^0.16.4",
"node-uuid": "^1.4.7",
"react": "^15.4.1",
"react-bootstrap": "^0.30.6",
"react-dom": "^15.4.1",
"react-icons": "^2.2.1",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"react-tap-event-plugin": "git+https://github.com/zilverline/react-tap-event-plugin.git#master",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"concurrently": "^3.1.0",
"css-loader": "^0.25.0",
"electron-packager": "^8.2.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"postcss-loader": "^1.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2",
"webpack-target-electron-renderer": "^0.4.0"
}
}