forked from myarete/now-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.18 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
125
126
127
128
129
130
131
132
133
134
135
{
"name": "now-desktop",
"productName": "Now",
"description": "Create deployments right from the tray menu",
"version": "3.8.11",
"author": {
"name": "Zeit, Inc.",
"email": "[email protected]"
},
"repository": "zeit/now-desktop",
"main": "main/index.js",
"scripts": {
"start": "electron main",
"build": "next build renderer && next export renderer",
"precommit": "lint-staged",
"test": "xo",
"pack": "npm run build && build --dir",
"dist": "npm run build && build"
},
"build": {
"appId": "co.zeit.now",
"files": [
"**/*",
"!renderer",
"renderer/out"
],
"win": {
"target": [
"squirrel"
],
"icon": "main/static/icons/windows.ico"
},
"squirrelWindows": {
"loadingGif": "main/static/install-spinner.gif"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "main/static/icons/mac.icns",
"extendInfo": {
"LSUIElement": 1
}
}
},
"lint-staged": {
"*.js": [
"npm run test",
"prettier --single-quote --no-semi --write",
"git add"
]
},
"xo": {
"extends": [
"prettier",
"prettier/react",
"plugin:react/recommended"
],
"env": [
"browser",
"node"
],
"rules": {
"linebreak-style": 0,
"no-await-in-loop": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0
}
},
"license": "MIT",
"dependencies": {
"app-root-path": "2.0.1",
"arr-flatten": "1.1.0",
"async-retry": "1.1.4",
"bytes": "3.0.0",
"chalk": "2.3.0",
"child-process-promise": "2.2.1",
"chokidar": "1.7.0",
"deep-extend": "0.5.0",
"deployment-type": "1.0.1",
"docker-file-parser": "1.0.3",
"dot-prop": "4.2.0",
"electron-is-dev": "0.3.0",
"electron-next": "3.1.3",
"electron-squirrel-startup": "1.0.0",
"first-run": "1.2.0",
"fix-path": "2.1.0",
"fs-extra": "5.0.0",
"glob": "7.1.2",
"global-packages": "1.0.2",
"groom": "1.1.1",
"ignore": "3.3.7",
"ini": "1.3.5",
"just-compare": "1.2.1",
"load-licenses": "1.0.1",
"make-unique": "1.0.4",
"mkdirp": "0.5.1",
"moment": "2.20.1",
"ms": "2.1.1",
"node-fetch": "1.7.3",
"path-exists": "3.0.0",
"promisepipe": "2.1.1",
"react-input-autosize": "2.1.2",
"react-slick": "0.16.0",
"resumer": "0.0.0",
"semver": "5.4.1",
"serialize-error": "2.1.0",
"sleep-promise": "2.0.0",
"split-array": "1.0.1",
"sudo-prompt": "8.0.0",
"time-ago": "0.2.1",
"tmp-promise": "1.0.4",
"trim": "0.0.1",
"ua-parser-js": "0.7.17",
"winreg": "1.2.4"
},
"devDependencies": {
"electron": "1.7.11",
"electron-builder": "19.49.0",
"electron-builder-squirrel-windows": "19.49.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-react": "7.5.1",
"html-to-react": "1.3.1",
"husky": "0.14.3",
"jquery": "3.2.1",
"lint-staged": "6.0.0",
"next": "4.2.1",
"prettier": "1.9.2",
"prop-types": "15.6.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-refs": "3.0.4",
"react-sortable-hoc": "0.6.8",
"strip": "3.0.0",
"xo": "0.18.2"
}
}