-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 964 Bytes
/
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
{
"name": "statusindicator",
"version": "1.0.0",
"description": "",
"main": "dist/StatusIndicator.js",
"scripts": {
"start": "tsc && node dist/StatusIndicator.js",
"build": "tsc && npm run copy-files",
"copy-files": "copyfiles -u 1 ./src/python/*.py ./dist && copyfiles .env ./dist"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@microsoft/microsoft-graph-types": "^1.32.0",
"@types/node": "^14.14.32",
"@types/node-cron": "^2.0.3",
"@types/node-persist": "^3.1.1",
"@types/nodemailer": "^6.4.1",
"copyfiles": "^2.4.1",
"rimraf": "^5.0.7",
"typescript": "^4.2.3"
},
"dependencies": {
"@azure/msal-node": "^1.0.1",
"@microsoft/microsoft-graph-client": "^2.2.1",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"isomorphic-fetch": "^3.0.0",
"msal": "^1.4.6",
"node-cron": "^3.0.0",
"node-persist": "^3.1.0",
"nodemailer": "^6.5.0",
"yargs": "^16.2.0"
}
}