-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
155 lines (155 loc) · 4.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "zaibatsu-bud",
"version": "0.4.6",
"author": "Alek Angelov",
"description": "The only tool you'll need for your combos.",
"private": false,
"license": "MIT",
"repository": "git@github.com:alekangelov/zaibatsu-bud_app.git",
"scripts": {
"build": "craco build",
"start": "cross-env ELECTRON_ENABLE_LOGGING=true && nf start -p 5000",
"test": "craco test",
"build:electron": "env-cmd -f ./.env.electron.prod tsc --project electron/tsconfig.json",
"start:electron": "env-cmd -f ./.env.electron.dev ts-node --skip-project electron/connect-electron.ts",
"watch:electron": "env-cmd -f ./.env.electron.dev tsc --watch --project electron/tsconfig.json",
"start:react": "env-cmd -f ./.env.electron.dev craco start",
"start:react-web": "env-cmd -f ./.env.web.dev craco start",
"dist": "yarn pre:dist && electron-builder build -mwl -c.extraMetadata.main=build/electron/main.js --publish \"onTag\"",
"pre:dist": "env-cmd -f ./.env.electron.prod npm run build && npm run build:electron"
},
"build": {
"productName": "Zaibatsu Bud",
"appId": "com.alekangelov.ZaibatsuBud",
"publish": "github",
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"protocols": {
"name": "zaibatsu-protocol",
"schemes": [
"zaibatsu"
]
},
"appImage": {
"license": "LICENSE"
},
"nsis": {
"guid": "3478dad0-f768-412b-b7f3-a18e481e7f9b",
"oneClick": true,
"perMachine": true,
"license": "LICENSE"
},
"directories": {
"buildResources": "public"
},
"fileAssociations": [
{
"name": "Zaibatsu Combo",
"description": "Combo file for Tekken 7",
"icon": "file_icon.icns",
"role": "Editor",
"ext": "zaic"
}
]
},
"homepage": "./",
"main": "./build/electron/main.js",
"dependencies": {
"@craco/craco": "^6.1.2",
"@electron/remote": "^1.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@react-spring/core": "^9.1.2",
"@react-spring/web": "9.1.2",
"@reecelucas/react-use-hotkeys": "^1.3.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"add": "^2.0.6",
"change-case": "^4.1.2",
"clsx": "^1.1.1",
"dayjs": "^1.10.6",
"electron-devtools-installer": "^3.2.0",
"electron-log": "^4.4.0",
"electron-store": "^8.0.0",
"electron-updater": "^4.3.9",
"env-cmd": "^10.1.0",
"formik": "^2.2.6",
"merge-props": "^5.0.3",
"nanoid": "^3.1.22",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-alert-async": "^1.1.3",
"react-app-rewired": "^2.1.8",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.2",
"react-markdown": "^6.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-scrollbars-custom": "^4.0.25",
"react-select": "^4.3.1",
"react-toastify": "^7.0.4",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"typesafe-actions": "^5.1.0",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1",
"yarn": "^1.22.10",
"yup": "^0.32.9"
},
"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"
]
},
"devDependencies": {
"@types/electron-config": "^3.2.2",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.43",
"@types/ramda": "^0.27.40",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/react-select": "^4.0.17",
"craco-esbuild": "^0.3.2",
"cross-env": "^7.0.3",
"electron": "^12.0.6",
"electron-builder": "^22.11.9",
"foreman": "^3.0.1",
"nodemon": "^2.0.7",
"sass": "^1.32.12",
"ts-node": "^9.1.1",
"tsc": "^1.20150623.0",
"wait-on": "^5.3.0"
}
}