-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 4.09 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "google-calendar-analytics-server",
"version": "1.0.0",
"description": "RESTful API via Express for Google Calendar Analytics Web App",
"main": "index.js",
"scripts": {
"start": "webpack --progress --colors && node ./build/local.js",
"watch": "nodemon",
"build": "webpack --env dev",
"build-prod": "webpack --env prod",
"deploy": "./update_gateway_stages.sh && npm run build && cd terraform && ./terraform_apply.sh dev && cd ../../..",
"deploy-win": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./update_gateway_stages.ps1 && npm run build && @powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./terraform/terraform_apply.ps1 dev",
"deploy-prod": "./update_gateway_stages.sh && npm run build-prod && cd terraform && ./terraform_apply.sh prod && cd ../../..",
"deploy-prod-win": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./update_gateway_stages.ps1 && npm run build-prod && @powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./terraform/terraform_apply.ps1 prod",
"store-secret": "aws s3 cp credentials.json s3://azizj1 --profile aws-cli",
"get-secret": "aws s3 cp s3://azizj1/credentials.json . --profile aws-cli",
"store-auth-secret": "aws s3 cp auth.json s3://azizj1 --profile aws-cli",
"get-auth-secret": "aws s3 cp s3://azizj1/auth.json . --profile aws-cli",
"custom-domain-setup": "cd ./terraform && ./custom_domain_setup.sh && cd ../",
"custom-domain-setup-win": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./terraform/custom_domain_setup.ps1",
"create-s3-bucket": "cd ./terraform && ./create_s3_bucket.sh && cd ../",
"create-s3-bucket-win": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./terraform/create_s3_bucket.ps1",
"teardown": "cd terraform && ./terraform_teardown.sh dev && cd ../../..",
"teardown-win": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./terraform/terraform_teardown.ps1 dev",
"teardown-prod": "cd terraform && ./terraform_teardown.sh prod && cd ../../..",
"teardown-prod-win": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./terraform/terraform_teardown.ps1 prod",
"custom-domain-teardown": "cd terraform && ./custom_domain_teardown.sh && cd ../../..",
"custom-domain-teardown-win": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./terraform/custom_domain_teardown.ps1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azizj1/google-calendar-analytics.git"
},
"author": "Aziz Javed",
"license": "ISC",
"bugs": {
"url": "https://github.com/azizj1/google-calendar-analytics/issues"
},
"homepage": "https://github.com/azizj1/google-calendar-analytics#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@types/aws-lambda": "^8.10.11",
"@types/aws-serverless-express": "^3.0.1",
"@types/body-parser": "^1.17.0",
"@types/chalk": "^2.2.0",
"@types/cors": "^2.8.4",
"@types/debug": "^0.0.30",
"@types/lodash": "^4.14.134",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.7.35",
"@types/swagger-ui-express": "^3.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"nodemon": "^1.18.4",
"ts-loader": "^5.0.0",
"tslint": "^5.11.0",
"tslint-loader": "^3.6.0",
"typescript": "^3.0.3",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"zip-webpack-plugin": "^3.0.0"
},
"dependencies": {
"aws-serverless-express": "^3.3.5",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"cors": "^2.8.4",
"debug": "^3.1.0",
"express": "4.16.3",
"handlebars": "^4.7.6",
"lodash": "^4.17.11",
"mjml": "^4.8.1",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"node-google-calendar": "^1.1.1",
"swagger-ui-express": "^4.0.1"
}
}