-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 3.08 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
{
"name": "p2pmanagerdev",
"version": "0.5.0",
"author": "Aydin Tekin <exaphex@github.com>",
"description": "P2P Manager app",
"email": "exaphex@github.com",
"private": true,
"homepage": ".",
"main": "./public/electron.js",
"repository": {
"type": "git",
"url": "https://github.com/exAphex/p2pmanager.git"
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"async-mutex": "^0.3.2",
"better-sqlite3": "^8.4.0",
"chart.js": "3.2.1",
"chartjs-adapter-moment": "^1.0.0",
"electron-json-storage": "^4.5.0",
"fetch-cookie": "^2.0.0",
"form-data": "^4.0.0",
"moment": "^2.29.1",
"node-fetch": "2.0",
"react": "^17.0.2",
"react-chartjs-2": "3.0.3",
"react-dom": "^17.0.2",
"react-loading-spin": "^2.1.9",
"react-router": "^6.3.0",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"web-vitals": "^2.1.4"
},
"build": {
"appId": "com.exAphex.p2pmanager",
"productName": "P2PManager",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public"
},
"mac": {
"target": "dmg"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "deb"
}
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"deploy": "yarn build && electron-builder -m -w -l -c.extraMetadata.main=build/electron.js --publish always",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron:start": "concurrently -k \"cross-env BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electronmon .\"",
"electron:package:mac": "yarn build && electron-builder -m -c.extraMetadata.main=build/electron.js",
"electron:package:win": "yarn build && electron-builder -w -c.extraMetadata.main=build/electron.js",
"electron:package:linux": "yarn build && electron-builder -l -c.extraMetadata.main=build/electron.js",
"postinstall": "electron-builder install-app-deps"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"last 1 electron version"
],
"development": [
"last 1 electron version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"electron": "^18.2.3",
"electron-builder": "^23.0.2",
"electron-fetch": "^1.7.4",
"electronmon": "^2.0.2",
"eslint": "^8.14.0",
"electron-rebuild": "^3.2.9",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"postcss": "^8.4.6",
"react-datepicker": "^4.6.0",
"tailwindcss": "^3.0.23",
"uuid": "^8.3.2",
"wait-on": "^6.0.1"
}
}