forked from googlesamples/appauth-js-electron-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 725 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 725 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
{
"name": "appauth-electron",
"version": "0.1.0",
"description": "An Electron App which uses @openid/appauth",
"main": "built/index.js",
"scripts": {
"compile": "tsc",
"watch": "tsc --watch",
"start": "npm run-script compile && node_modules/.bin/electron .",
"dev": "npm run-script watch & node_modules/.bin/electron ."
},
"files": [
"built/**"
],
"keywords": [
"AppAuth-JS",
"Electron"
],
"author": "rahulrav",
"license": "MIT",
"dependencies": {
"@openid/appauth": "^1.1.1",
"@types/react": "^16.7.1",
"@types/react-dom": "^16.0.9",
"electron": "^3.0.8",
"material-design-lite": "^1.3.0"
},
"devDependencies": {
"typescript": "^3.1.6"
}
}