forked from Pong420/google-tasks-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
198 lines (198 loc) · 4.94 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
"name": "google-tasks-desktop",
"version": "3.1.3",
"scripts": {
"dev": "nf start",
"build": "yarn app:build && yarn electron:compile",
"package": "rimraf release && yarn build && electron-builder build --publish never",
"package-all": "rimraf release && yarn build && electron-builder build -mwl",
"lint": "eslint 'electron/**/*.ts?(x)' && eslint 'src/**/*.ts?(x)'",
"app:dev": "cross-env BROWSER=false react-app-rewired start",
"app:build": "react-app-rewired build",
"electron:compile": "tsc --project electron/tsconfig.json",
"electron:dev": "cross-env NODE_ENV=development & electron electron/main.js",
"component": "node scripts/component.js",
"get": "node scripts/type.js",
"redux": "node scripts/redux.js",
"test": "react-app-rewired test",
"eject": "react-scripts eject"
},
"homepage": ".",
"main": "./electron/main.js",
"build": {
"productName": "Google Tasks",
"appId": "Google Tasks",
"directories": {
"buildResources": "public",
"output": "release"
},
"extraMetadata": {
"main": "electron/main.js"
},
"files": [
"build/index.html",
"build/**/*",
"electron/**/*.js",
"package.json"
],
"extraFiles": [
"credentials"
],
"mac": {
"target": [
"dmg",
"pkg",
"zip"
],
"darkModeSupport": true,
"icon": "public/icon/icon.png",
"type": "distribution"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"pkg": {
"license": "LICENSE"
},
"win": {
"target": [
"nsis",
"portable",
"zip"
],
"icon": "public/icon/icon.ico"
},
"nsis": {
"installerIcon": "public/icon/icon.ico",
"license": "LICENSE",
"warningsAsErrors": false
},
"linux": {
"target": [
"AppImage",
"deb",
"snap"
],
"icon": "./public/icon/512x512.png",
"desktop": {
"Type": "Application",
"Encoding": "UTF-8",
"Name": "Google Tasks",
"Comment": "Unofficial google tasks desktop application",
"Icon": "google-tasks-desktop",
"Terminal": "false",
"StartupWMClass": "google-tasks-desktop"
}
},
"snap": {
"grade": "stable"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Pong420/google-tasks-desktop"
},
"author": {
"name": "Pong",
"email": "[email protected]",
"url": "https://pong420.netlify.app"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Pong420/google-tasks-desktop/issues"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"react/self-closing-comp": "warn",
"import/no-anonymous-default-export": 0
}
},
"husky": {
"hooks": {
"pre-co3mit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings=0",
"prettier --ignore-path .eslintignore --write"
],
"{*.json,.{babelrc,eslintrc,prettierrc}}": [
"prettier --ignore-path .eslintignore --parser json --write"
],
"*.{css,scss}": [
"prettier --ignore-path .eslintignore --single-quote --write"
],
"*.{yml,md}": [
"prettier --ignore-path .eslintignore --single-quote --write"
]
},
"devDependencies": {
"@types/history": "^4.7.8",
"@types/lodash": "^4.14.168",
"@types/mousetrap": "^1.6.5",
"@types/node": "^14.14.37",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"cross-env": "^7.0.3",
"electron": "11.5.0",
"electron-builder": "^22.10.5",
"electron-devtools-installer": "^3.1.1",
"foreman": "^3.0.1",
"husky": "^4.2.3",
"lint-staged": "^10.5.4",
"react-scripts": "4.0.3",
"prettier": "^2.2.1",
"react-desktop": "^0.3.9",
"rimraf": "^3.0.2",
"sass": "^1.32.8",
"typescript": "4.2.3"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"connected-react-router": "^6.9.1",
"customize-cra": "^1.0.0",
"googleapis": "^47.0.0",
"history": "^4.10.1",
"lodash": "^4.17.21",
"mousetrap": "^1.6.5",
"nprogress": "^0.2.0",
"rc-field-form": "^1.20.0",
"react": "^17.0.2",
"react-app-rewired": "^2.1.8",
"react-dom": "^17.0.2",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-sortable-hoc": "^2.0.0",
"redux": "^4.0.5",
"redux-observable": "^1.2.0",
"reselect": "^4.0.0",
"rxjs": "^6.6.6",
"typeface-nunito-sans": "^1.1.13",
"typeface-roboto": "^1.1.13",
"use-rx-hooks": "1.6.2"
},
"devEngines": {
"node": ">=7.x",
"npm": ">=4.x",
"yarn": ">=0.21.3"
},
"browserslist": [
"last 1 chrome version"
]
}