forked from fultimator/fultimator-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.04 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.04 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
{
"name": "fultimator",
"version": "0.1.3-prerelease",
"private": true,
"main": "build/electron.js",
"homepage": "./",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"translate": "node DownloadTranslations.js",
"electron": "electron ./public/electron.js",
"electron-test": "npm run build && npm run electron",
"dist": "electron-builder",
"package": "node DownloadTranslations.js && npm run build && npm run dist"
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@fortawesome/fontawesome-svg-core": "^1.3.0-beta2",
"@fortawesome/free-regular-svg-icons": "^6.0.0-beta2",
"@fortawesome/free-solid-svg-icons": "^6.0.0-beta2",
"@fortawesome/react-fontawesome": "^0.1.16",
"@mui/icons-material": "^5.14.5",
"@mui/material": "^5.14.5",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.68",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"axios": "^1.7.4",
"date-fns": "^2.29.3",
"deep-equal": "^2.2.3",
"electron-oauth2": "^3.0.0",
"eslint": "^8.55.0",
"google-auth-library": "^9.12.0",
"googleapis": "^140.0.1",
"history": "^5.1.0",
"html2canvas": "^1.4.1",
"idb": "^8.0.0",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-firebase-hooks": "^4.0.0",
"react-icons": "^4.3.1",
"react-markdown": "^7.1.0",
"react-router-dom": "^6.0.0",
"react-scripts": "^5.0.1",
"sass": "^1.47.0",
"typescript": "^4.9.5",
"use-react-screenshot": "^4.0.0",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"dependency-cruiser": "^11.2.1",
"electron": "^31.3.1",
"electron-builder": "^24.13.3"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"description": "Unofficial Fabula Ultima Tools",
"author": "Fultimator <fultimator@gmail.com>",
"build": {
"appId": "com.fultimator.fultimator",
"productName": "Fultimator",
"files": [
"build/**/*",
"public/electron.js"
],
"asar": true,
"linux": {
"target": [
"AppImage",
"deb",
"rpm",
"snap",
"tar.gz"
],
"icon": "public/icons/app.png",
"maintainer": "Fultimator <fultimator@gmail.com>"
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "public/icons/app.ico"
},
"mac": {
"target": [
"dmg",
"zip"
]
}
}
}