-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
137 lines (137 loc) · 3.73 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
{
"name": "imapsync",
"version": "0.11.0",
"homepage": "./",
"private": true,
"author": "Casper Engelmann",
"description": "Application to make commands for imapsync by Gilles LAMIRAL",
"main": "public/electron.js",
"repository": {
"type": "git",
"url": "https://github.com/CasperEngl/imapsync-app.git"
},
"build": {
"appId": "com.casperengelmann.imapsync",
"productName": "Imapsync",
"copyright": "Copyright © 2019 ${author}",
"files": [
"build/**/*",
"node_modules/**/*"
],
"extraFiles": [
{
"from": "resources/${os}",
"to": "Resources/bin",
"filter": [
"**/*"
]
}
],
"directories": {
"buildResources": "assets"
},
"mac": {
"category": "public.app-category.utilities"
},
"win": {
"target": [
"nsis"
],
"icon": "build/icon.png"
},
"nsis": {
"deleteAppDataOnUninstall": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Imapsync",
"artifactName": "imapsync.${version}.${ext}"
}
},
"scripts": {
"cra:start": "react-scripts start",
"cra:build": "react-scripts build",
"cra:test": "react-scripts test --env=jsdom",
"cra:eject": "react-scripts eject",
"electron:dev": "concurrently \"yarn ts:build\" \"BROWSER=none yarn cra:start\" \"wait-on http://localhost:3000 && electron .\"",
"electron:pack": "run-s 'electron:prebuild' 'electron:build -mwl'",
"electron:prebuild": "yarn ts:build && yarn cra:build",
"electron:build": "electron-builder -c.extraMetadata.main=build/electron.js",
"electron:start": "electron .",
"ts:build": "tsc --noEmit false --module commonjs",
"ts:watch": "tsc -w --noEmit false --module commonjs"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.9",
"base-64": "^0.1.0",
"bootstrap": "^4.4.1",
"electron-is-dev": "^1.1.0",
"electron-preferences": "^2.0.0",
"electron-serve": "^0.4.1",
"find-process": "^1.4.3",
"font-awesome": "^4.7.0",
"iconv-lite": "^0.5.1",
"is-valid-json": "^1.0.2",
"jquery": "^3.4.1",
"mkdirp": "^1.0.3",
"node-notifier": "^6.0.0",
"popper.js": "^1.16.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-perfect-scrollbar": "^1.5.8",
"react-redux": "^7.2.0",
"react-scripts": "^3.4.0",
"react-spring": "^8.0.27",
"reactstrap": "^8.4.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-localstorage-simple": "^2.1.6",
"redux-thunk": "^2.2.0",
"styled-components": "^5.0.1",
"tinycolor2": "^1.4.1",
"typesafe-actions": "^5.1.0",
"update-electron-app": "^1.5.0",
"validator": "^12.2.0"
},
"devDependencies": {
"@types/base-64": "^0.1.3",
"@types/electron-debug": "^2.1.0",
"@types/electron-is-dev": "^1.1.1",
"@types/iconv-lite": "^0.0.1",
"@types/jest": "^25.1.4",
"@types/mkdirp": "^1.0.0",
"@types/node": "^13.11.1",
"@types/node-notifier": "^6.0.0",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/reactstrap": "^8.4.2",
"@types/redux": "^3.6.0",
"@types/styled-components": "^5.0.1",
"@types/tinycolor2": "^1.4.2",
"@types/validator": "^12.0.1",
"@typescript-eslint/parser": "^2.24.0",
"concurrently": "^5.1.0",
"electron": "^8.2.4",
"electron-builder": "^22.4.1",
"eslint": "6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"typescript-eslint-parser": "^22.0.0",
"wait-on": "^4.0.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}