-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.09 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
{
"name": "CopDeck",
"version": "1.1.8",
"author": "CopDeck",
"description": "CopDeck Sneaker Monitor",
"homepage": ".",
"main": "build/electron/main.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/istvan-kreisz/copdeck-desktop-app.git"
},
"dependencies": {
"@craco/craco": "^6.1.2",
"@headlessui/react": "^1.2.0",
"@heroicons/react": "^1.0.1",
"@istvankreisz/copdeck-scraper": "^1.3.3",
"@tailwindcss/forms": "^0.3.2",
"@tailwindcss/line-clamp": "^0.2.1",
"@types/node": "^15.6.1",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"dotenv": "^10.0.0",
"electron-log": "^4.3.5",
"electron-notarize": "^1.0.0",
"electron-reload": "^1.5.0",
"electron-store": "^8.0.0",
"electron-updater": "^4.3.9",
"firebase": "^8.6.5",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"superstruct": "^0.15.2",
"typescript": "^4.3.2",
"update-electron-app": "^2.0.1",
"uuid": "^8.3.2",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"postinstall": "electron-builder install-app-deps",
"dev": "concurrently \"cross-env BROWSER=none yarn start\" \"wait-on http://localhost:3000 && tsc -p electron -w\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "yarn build && tsc -p electron && electron-builder -m -w -p onTag",
"deploy": "yarn build && tsc -p electron && electron-builder build --mac --win --publish always",
"testbuild": "yarn build && tsc -p electron && electron-builder build --mac",
"eject": "react-scripts eject",
"link": "npm link copdeck-scraper"
},
"build": {
"appId": "com.electron.copdeck",
"productName": "CopDeck",
"copyright": "Copyright © 2021 CopDeck",
"afterSign": "scripts/notarize.js",
"extends": null,
"files": [
"build/**/*"
],
"directories": {
"buildResources": "public"
},
"publish": [
{
"provider": "github",
"owner": "istvan-kreisz",
"repo": "https://github.com/istvan-kreisz/copdeck-desktop-app.git"
}
],
"icon": "logo1024.png",
"win": {
"publish": [
"github"
],
"icon": "logo1024.png",
"target": "nsis",
"legalTrademarks": "Copyright © 2021 CopDeck"
},
"mac": {
"publish": [
"github"
],
"category": "public.app-category.utilities",
"type": "distribution",
"icon": "logo1024.png",
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"hardenedRuntime": true
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/electron-store": "^3.2.0",
"@types/uuid": "^8.3.0",
"autoprefixer": "^9",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"electron": "^13.0.1",
"electron-builder": "^22.10.5",
"postcss": "^7",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"wait-on": "^5.3.0"
}
}