-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
74 lines (74 loc) · 1.94 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
{
"name": "botclient",
"productName": "BotClient",
"description": "A discord botclient built with Electron, React and discord.js.",
"author": "DarkGuy10",
"version": "0.12.1",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/darkGuy10/BotClient.git"
},
"dependencies": {
"@darkguy10/discord-markdown": "^2.6.0",
"@skyra/discord-components-core": "^3.3.0",
"@skyra/discord-components-react": "^3.3.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"discord-api-types": "^0.37.67",
"discord.js": "^14.14.1",
"electron-is-dev": "^2.0.0",
"electron-log": "^5.1.0",
"electron-store": "^8.1.0",
"electron-updater": "6.1.7",
"html-to-react": "^1.4.8",
"markdown-to-jsx": "^7.1.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"react-twemoji": "^0.5.0",
"web-vitals": "^2.1.4"
},
"main": "public/electron.js",
"homepage": "./",
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test --env=jsdom",
"react-eject": "react-scripts eject",
"electron-build": "electron-builder",
"build": "yarn react-build && yarn electron-build",
"start": "concurrently -k \"yarn react-start\" \"wait-on tcp:127.0.0.1:3000 && electron .\"",
"lint": "prettier -w .",
"postinstall": "electron-builder install-app-deps"
},
"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": {
"babel-plugin-module-resolver": "^4.1.0",
"concurrently": "^8.2.2",
"electron": "^28.1.4",
"electron-builder": "24.9.1",
"prettier": "^3.2.4",
"wait-on": "^7.2.0"
},
"packageManager": "yarn@4.0.2"
}