-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.81 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
{
"name": "messaging-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node tools/copyAssets",
"exec-deploy-staging": "serverless deploy --stage Staging",
"deploy-staging": "npm-run-all build exec-deploy-staging",
"exec-deploy-prod": "serverless deploy --stage Prod",
"deploy-prod": "npm-run-all build exec-deploy-prod",
"initdb": "ts-node tools/initdb",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1",
"serverless-local": "serverless invoke local -f api"
},
"keywords": [],
"author": "Live Church Solutions",
"dependencies": {
"@churchapps/apihelper": "0.0.9",
"aws-serverless-express": "^3.4.0",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"firebase-admin": "^11.10.1",
"fs-extra": "^11.1.1",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"winston": "^3.3.3",
"winston-cloudwatch": "^3.1.1",
"ws": "^8.4.0"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/mysql": "^2.15.21",
"@types/ws": "^8.2.2",
"aws-sdk": "^2.1048.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"serverless": "^2.70.0",
"serverless-layers": "^2.5.1",
"serverless-plugin-utils": "^0.2.0",
"tslint": "^6.1.2",
"typescript": "^5.2.2"
}
}