-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 2.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
{
"name": "finaldesktopapp",
"version": "2.0.0",
"description": "The Final OpenID Connect secured Desktop App",
"keywords": [],
"author": "Gary Archer",
"license": "MIT",
"main": "main.bundle.js",
"type": "module",
"engines": {
"node": ">=20"
},
"build": {
"protocols": {
"name": "finaldesktopapp",
"schemes": [
"x-authsamples-desktopapp"
]
}
},
"scripts": {
"lint": "npx eslint . --ignore-pattern dist",
"build": "./build.sh",
"start": "./run.sh",
"pack": "./pack.sh",
"webpackMainDebug": "NODE_OPTIONS='--import tsx' webpack --config webpack/main/webpack.config.dev.ts",
"webpackMainRelease": "NODE_OPTIONS='--import tsx' webpack --config webpack/main/webpack.config.prod.ts",
"webpackRendererDebug": "NODE_OPTIONS='--import tsx' webpack --config webpack/renderer/webpack.config.dev.ts",
"webpackRendererDebugWatch": "NODE_OPTIONS='--import tsx' webpack --config webpack/renderer/webpack.config.dev.ts --watch",
"webpackRendererRelease": "NODE_OPTIONS='--import tsx' webpack --config webpack/renderer/webpack.config.prod.ts"
},
"dependencies": {
"@openid/appauth": "^1.3.1",
"axios": "^1.7.9",
"base64url": "^3.0.1",
"electron-store": "^8.2.0",
"fs-extra": "^11.2.0",
"https-proxy-agent": "^7.0.5",
"js-event-bus": "^1.1.1",
"open": "^10.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-modal": "^3.16.1",
"react-router-dom": "^7.0.2"
},
"devDependencies": {
"@electron/packager": "^18.3.3",
"@eslint/js": "^9.15.0",
"@types/fs-extra": "^11.0.4",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react-modal": "^3.16.3",
"electron": "^33.3.0",
"eslint": "^9.15.0",
"eslint-plugin-react": "7.37.2",
"ts-loader": "^9.5.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
},
"overrides": {
"react-modal": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
}
}
}