-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"name": "Zhong",
"version": "1.0.0",
"main": "index.js",
"author": "Simon Hochrein <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "parcel --target=electron --public-url=. src/*.html",
"build": "parcel build --target=electron --public-url=. src/*.html",
"start": "electron index.js",
"pack": "electron-builder --dir",
"dist": "electron-builder -mw"
},
"devDependencies": {
"@types/moment-timezone": "^0.5.30",
"@types/node": "^14.14.5",
"@types/node-notifier": "^8.0.0",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"@types/react-transition-group": "^4.4.0",
"electron": "^10.1.3",
"electron-builder": "^22.9.1",
"parcel": "^1.12.4",
"sass": "^1.26.12",
"typescript": "^4.0.3"
},
"dependencies": {
"@blueprintjs/core": "^3.33.0",
"@blueprintjs/datetime": "^3.19.2",
"@blueprintjs/select": "^3.14.2",
"@blueprintjs/timezone": "^3.7.2",
"@electron/remote": "^1.0.0",
"@emotion/react": "^11.0.0",
"electron-positioner": "^4.1.0",
"emotion": "^10.0.27",
"fuse.js": "^6.4.2",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31",
"react": "^16.13.1",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^16.13.1",
"react-transition-group": "^4.4.1"
},
"build": {
"appId": "com.simonhochrein.zhong",
"files": [
"img/*.png",
"dist/*",
"index.js"
],
"directories": {
"output": "build"
},
"win": {
"icon": "img/Zhong.ico"
},
"mac": {
"target": ["zip"],
"category": "public.app-category.productivity",
"icon": "img/Zhong.icns"
}
}
}