forked from vercel/hyper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.57 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
{
"repository": "zeit/hyper",
"scripts": {
"start": "echo 'please run `npm run dev` in one tab and then `npm run app` in another one'",
"app": "electron app",
"dev": "webpack -w",
"build": "cross-env NODE_ENV=production webpack",
"lint": "xo",
"test": "npm run lint",
"prepush": "npm test",
"postinstall": "install-app-deps",
"pack": "npm run build && build --dir && babel --no-comments --compact --minified --out-file app/dist/bundle.js app/dist/bundle.js",
"dist": "npm run build && build"
},
"xo": {
"extends": "xo-react",
"esnext": true,
"space": true,
"env": [
"browser",
"node"
],
"rules": {
"new-cap": 0,
"complexity": 0,
"react/prop-types": 0,
"react/jsx-no-bind": 0
},
"ignores": [
"build/**",
"app/dist/**",
"app/static/**",
"assets/**"
]
},
"babel": {
"presets": [
"react"
]
},
"build": {
"appId": "co.zeit.hyper",
"asar": false,
"extend-info": "build/Info.plist",
"linux": {
"arch": [
"ia32",
"x64"
],
"target": [
"deb",
"AppImage",
"rpm"
]
},
"win": {
"target": [
"squirrel"
]
},
"mac": {
"category": "public.app-category.developer-tools"
}
},
"license": "MIT",
"author": {
"name": "Zeit, Inc.",
"email": "team@zeit.co"
},
"greenkeeper": {
"emails": false
},
"dependencies": {
"aphrodite-simple": "0.4.1",
"color": "0.11.4",
"hterm-umdjs": "1.1.3",
"json-loader": "0.5.4",
"mousetrap": "1.6.0",
"ms": "0.7.2",
"object-values": "1.0.0",
"php-escape-shell": "1.0.0",
"react": "15.3.2",
"react-addons-pure-render-mixin": "15.3.2",
"react-deep-force-update": "2.0.1",
"react-dom": "15.3.2",
"react-redux": "4.4.6",
"redux": "3.6.0",
"redux-thunk": "2.1.0",
"reselect": "2.5.4",
"seamless-immutable": "6.1.3",
"semver": "5.3.0",
"uuid": "3.0.0",
"runes": "^0.3.0"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-react": "^6.11.1",
"copy-webpack-plugin": "^4.0.0",
"cross-env": "3.1.3",
"electron": "1.4.7",
"electron-builder": "8.6.0",
"electron-devtools-installer": "^2.0.0",
"eslint-config-xo-react": "^0.10.0",
"eslint-plugin-react": "^6.7.1",
"husky": "^0.11.6",
"redux-logger": "^2.6.1",
"spectron": "^3.4.0",
"webpack": "^2.1.0-beta.15",
"xo": "^0.17.1"
}
}