-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 833 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 833 Bytes
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
{
"name": "superoffice-electron-appauth",
"version": "0.1.0",
"description": "An Electron App which uses @openid/appauth towards SuperOffice",
"main": "built/index.js",
"scripts": {
"compile": "tsc",
"watch": "tsc --watch",
"start": "npm run-script compile & electron .",
"dev": "npm run-script watch & electron ."
},
"files": [
"built/**"
],
"keywords": [
"SuperOffice",
"AppAuth-JS",
"Electron"
],
"author": "sodevnet",
"license": "MIT",
"dependencies": {
"@openid/appauth": "^1.1.1",
"@types/jsonwebtoken": "^8.3.2",
"@types/react": "^16.7.1",
"@types/react-dom": "^16.0.9",
"electron": "^39.8.5",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"material-design-lite": "^1.3.0"
},
"devDependencies": {
"typescript": "^5.5.4"
}
}