-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.4 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
{
"name": "electron-app",
"version": "0.1.0",
"description": "Electron.js app with electron-rpc-api module usage examples",
"author": "Vladimir Yakovlev <[email protected]> (https://github.com/vladimiry)",
"license": "MIT",
"repository": "[email protected]:vladimiry/electron-rpc-api.git",
"engines": {
"node": ">=20"
},
"main": "./app/generated/main/index.js",
"scripts": {
"build": "yarn webpack:shortcut --config ./webpack-configs/webpack.config.ts",
"build:watch": "yarn webpack:shortcut --config ./webpack-configs/webpack.config.ts -w",
"build:watch:dev": "cross-env NODE_ENV=development yarn webpack:shortcut --config ./webpack-configs/webpack.config.ts -w",
"clean": "rimraf ./app/generated",
"electron-builder:directory": "electron-builder --dir",
"electron-builder:package": "electron-builder",
"electron:start": "npx --no-install electron ./app/generated/main/index.js",
"lint": "eslint \"./src/**/*.ts\" \"./webpack-configs/webpack.config.ts\"",
"start": "npm-run-all lint build electron:start",
"webpack:shortcut": "cross-env TS_NODE_FILES=true npm exec --package=webpack-cli --node-options=\"--require tsconfig-paths/register\" -- webpack"
},
"dependencies": {
"electron-rpc-api": "10.0.0",
"rxjs": "7.8.1",
"sanitize-html": "2.13.0",
"tcp-ping": "0.1.1"
},
"devDependencies": {
"@types/node": "20.14.10",
"@types/sanitize-html": "2.11.0",
"@types/tcp-ping": "0.1.6",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"bootstrap": "5.3.3",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"electron": "31.2.0",
"electron-builder": "24.13.3",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-sonarjs": "0.23.0",
"format-imports": "4.0.4",
"html-webpack-plugin": "5.6.0",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"mini-css-extract-plugin": "2.9.0",
"npm-run-all2": "6.2.2",
"ping": "0.4.4",
"rimraf": "6.0.1",
"sass": "1.77.8",
"sass-loader": "14.2.1",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.5.3",
"wait-on": "7.2.0",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4",
"webpack-merge": "6.0.1"
},
"resolutions": {
"*/**/tslib": "^2.x"
}
}