-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 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
{
"name": "teams-notifications",
"version": "1.0.0",
"description": "Notifications from calendar for MS Teams",
"dependencies": {
"@azure/msal-node": "^1.0.1",
"@microsoft/microsoft-graph-client": "^2.1.1",
"concurrently": "^7.0.0",
"cookie-parser": "~1.4.4",
"dotenv": "^16.0.0",
"electron": "^21.3.0",
"express": "^4.17.1",
"express-promise-router": "^4.0.1",
"hbs": "^4.1.1",
"http-errors": "^2.0.0",
"isomorphic-fetch": "^3.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31",
"morgan": "^1.10.0",
"uuid": "^9.0.0",
"windows-iana": "^5.0.2"
},
"devDependencies": {
"electron-rebuild": "^3.0.0",
"nodemon": "^2.0.7"
},
"scripts": {
"server": "node server/index.js",
"server:dev": "nodemon --watch \"server\" --exec \"node server/index.js dev\"",
"app": "electron app/index.js",
"app:dev": "nodemon --watch \"app\" --exec \"npm run app\"",
"start": "concurrently -n \"SERVER,APP\" \"npm run server\" \"npm run app\" -c \"bgMagenta.bold,bgGreen.bold\"",
"start:dev": "concurrently -n \"SERVER,APP\" \"npm run server:dev\" \"npm run app:dev\" -c \"bgMagenta.bold,bgGreen.bold\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mic0ishere/teams-notifications.git"
},
"keywords": [
"notifications",
"ms-teams",
"teams"
],
"author": "mic0",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mic0ishere/teams-notifications/issues"
},
"homepage": "https://github.com/mic0ishere/teams-notifications#readme"
}