-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.43 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.43 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
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
{
"name": "capture",
"version": "0.1.1",
"description": "Capture & share screenshots easily",
"author": "HiDeoo",
"license": "MIT",
"private": true,
"main": "build/main",
"homepage": ".",
"scripts": {
"start": "concurrently -k -n rend,main,main \"BROWSER=none react-scripts start\" \"yarn build:main:dev -w\" \"yarn build:main:dev && electron .\"",
"build": "yarn build:renderer && yarn build:main",
"build:main": "tsc -p src/main",
"build:main:dev": "wait-on http://localhost:3000 && yarn build:main --incremental",
"build:renderer": "react-scripts build",
"lint": "eslint -c .eslintrc.prod.js --max-warnings=0 --ext ts,tsx src && tsc --noEmit",
"dist": "yarn dist:mac",
"dist:mac": "electron-builder -m -c.mac.identity=null",
"predist:mac": "yarn build"
},
"build": {
"appId": "com.hideoo.capture",
"productName": "Capture",
"copyright": "Copyright © 2020 HiDeoo",
"extends": null,
"protocols": [
{
"name": "Capture",
"schemes": [
"capture"
]
}
],
"files": [
".env*",
"build/**/*",
"!build/precache-manifest.*.js",
"!build/service-worker.js"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"category": "public.app-category.utilities",
"target": "dir",
"darkModeSupport": true
}
},
"dependencies": {
"attr-accept": "2.2.1",
"chokidar": "3.4.0",
"date-fns": "2.14.0",
"electron-is-dev": "1.2.0",
"electron-window-state": "5.0.3",
"mac-screen-capture-permissions": "1.1.0",
"mime-types": "2.1.27"
},
"devDependencies": {
"@tippyjs/react": "4.1.0",
"@types/jwt-decode": "2.2.1",
"@types/mime-types": "2.1.0",
"@types/node": "14.0.21",
"@types/react": "16.9.36",
"@types/react-dom": "16.9.8",
"@types/react-transition-group": "4.4.0",
"@types/react-virtualized-auto-sizer": "1.0.0",
"@types/react-window": "1.8.2",
"@types/styled-components": "5.1.0",
"clsx": "1.1.1",
"concurrently": "5.2.0",
"downshift": "6.0.2",
"electron": "9.4.0",
"electron-builder": "22.7.0",
"electron-reload": "1.5.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-simple-import-sort": "5.0.3",
"filesize": "6.1.0",
"husky": ">=4",
"jwt-decode": "2.2.0",
"lint-staged": ">=10",
"localforage": "1.7.4",
"mobx": "5.15.4",
"mobx-react-lite": "2.0.7",
"mobx-sync": "3.0.0",
"nanoid": "3.1.10",
"polished": "3.6.5",
"prettier": "2.0.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-dropzone": "11.0.3",
"react-error-boundary": "2.3.1",
"react-scripts": "3.4.1",
"react-sketch2": "0.5.7",
"react-transition-group": "4.4.1",
"react-virtualized-auto-sizer": "1.0.2",
"react-window": "1.8.5",
"styled-components": "5.1.1",
"styled-tools": "1.7.2",
"tailwindcss": "1.4.6",
"twin.macro": "1.7.0",
"typescript": "3.9.5",
"wait-on": "5.0.1",
"wretch": "1.7.2"
},
"browserslist": [
"Electron 9.0.4"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://github.com/HiDeoo/capture"
},
"keywords": [
"screenshot",
"capture",
"share"
],
"bugs": {
"url": "https://github.com/HiDeoo/capture/issues"
}
}