-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.78 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
{
"name": "attendance-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 startDebug",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"start": "node .",
"startDebug": "node --inspect=0.0.0.0:9229 .",
"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.12",
"aws-serverless-express": "^3.4.0",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"fs-extra": "^11.1.1",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/mysql": "^2.15.20",
"aws-sdk": "^2.1048.0",
"nodemon": "^2.0.15",
"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",
"shelljs": "^0.8.4",
"ts-node": "^10.4.0",
"tslint": "^6.1.2",
"typescript": "^5.2.2"
}
}