-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.91 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.91 KB
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
{
"name": "bg-group-sync",
"version": "1.1.1",
"description": "An automated tool to sync parents and students in Blackbaud to Google Groups",
"main": "dist/functions/**/*.js",
"scripts": {
"start": "npm run functions",
"start:local": "concurrently -r npm:start npm:azurite",
"prestart": "npm run build",
"build": "tsc && tscp",
"build:production": "npm run prestart && npm prune --production",
"clean": "rm -rf dist",
"deploy": "npm run build:production && func azure functionapp publish",
"watch": "concurrently -r 'tsc -w' 'tscp -w'",
"watch:dev": "concurrently -r npm:watch npm:dev",
"watch:dev:verbose": "concurrently -r npm:watch npm:dev:verbose",
"dev": "concurrently -r npm:functions npm:azurite",
"dev:verbose": "concurrently -r npm:functions:verbose npm:azurite",
"functions": "func start --typescript",
"functions:verbose": "func start --typescript --verbose",
"azurite": "azurite -s -l ./.azurite -L",
"lint": "eslint ."
},
"author": {
"name": "John Arrandale"
},
"repository": {
"url": "https://github.com/bootsie123/bg-group-sync"
},
"dependencies": {
"@azure/functions": "^4.0.0-alpha.7",
"@google-cloud/local-auth": "^2.1.0",
"axios": "^1.3.6",
"azure-functions-core-tools": "^4.0.5198",
"durable-functions": "^3.0.0-alpha.4",
"googleapis": "^105.0.0",
"mime": "^3.0.0",
"mjml": "^4.14.1",
"nodemailer": "^6.9.3",
"pug": "^3.0.2",
"simple-oauth2": "^5.0.0"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"azurite": "^3.23.0",
"concurrently": "^8.0.1",
"eslint": "^8.38.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^43.1.1",
"prettier": "^2.8.7",
"typescript": "^5.0.4",
"typescript-cp": "^0.1.8"
}
}