-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.38 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
{
"name": "comics",
"version": "1.2.2",
"author": {
"name": "Malte Wassmann"
},
"description": "Web comic reader",
"main": "public/electron.js",
"homepage": "./",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.6",
"@popmotion/popcorn": "^0.4.4",
"@reduxjs/toolkit": "^1.8.3",
"agentkeepalive": "^4.2.1",
"async-mutex": "^0.3.2",
"better-sqlite3": "^7.5.3",
"crypto-js": "^4.1.1",
"data-uri-to-buffer": "^3.0.1",
"date-fns": "^2.28.0",
"electron-is-dev": "^2.0.0",
"electron-store": "^8.0.2",
"file-type": "^16.5.3",
"formik": "^2.2.6",
"framer-motion": "^6.3.16",
"fuse.js": "^6.6.2",
"got": "^11.8.5",
"http-status-codes": "^2.2.0",
"image-size": "^1.0.1",
"keyv": "^4.3.2",
"keyv-file": "^0.2.0",
"match-sorter": "^6.3.1",
"nanoid": "^3.3.4",
"normalize-url": "^6.1.0",
"notistack": "^2.0.5",
"parse5": "^6.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.1",
"react-measure": "^2.5.2",
"react-redux": "^8.0.2",
"react-router-dom": "^5.3.3",
"redux-batched-actions": "^0.5.0",
"redux-saga": "^1.1.3",
"typeface-roboto": "^1.1.13",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-measure": "^2.0.8",
"@types/react-redux": "^7.1.24",
"@types/react-router-dom": "^5.3.3",
"@types/yup": "^0.29.14",
"concurrently": "^7.2.2",
"cross-env": "^7.0.3",
"electron": "^19.0.7",
"electron-builder": "^23.1.0",
"react-scripts": "^5.0.1",
"typescript": "^4.7.4",
"wait-on": "^6.0.1"
},
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test",
"react-eject": "react-scripts eject",
"electron-build": "electron-builder --config electron-builder.config.js",
"build": "npm run react-build && npm run electron-build",
"start": "concurrently \"cross-env BROWSER=none npm run react-start\" \"wait-on http://localhost:3000/ && electron .\"",
"postinstall": "electron-builder install-app-deps"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"Chrome 91"
]
}