-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.14 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
{
"name": "membership-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"codegen": "graphql-codegen",
"copy-assets": "copyfiles -f src/apiBase/tools/templates/* dist/templates",
"exec-deploy-staging": "serverless deploy --stage Staging",
"deploy-staging": "npm-run-all build copy-assets exec-deploy-staging",
"exec-deploy-prod": "serverless deploy --stage Prod",
"deploy-prod": "npm-run-all build copy-assets 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 copy-assets startDebug",
"dev:watch": "npm run tsc-watch --onSuccess \"node dist/index.js\"",
"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.15",
"@hubspot/api-client": "^11.1.0",
"aws-serverless-express": "^3.4.0",
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-validator": "^7.1.0",
"inversify": "^6.0.2",
"inversify-express-utils": "^6.4.6",
"jsonwebtoken": "^9.0.2",
"node-geocoder": "^4.3.0",
"reflect-metadata": "^0.2.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node-geocoder": "^4.2.6",
"@types/uuid": "^10.0.0",
"copyfiles": "^2.4.1",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.7",
"serverless": "3.39.0",
"serverless-plugin-utils": "^0.2.0",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.0",
"tslint": "^6.1.3",
"typescript": "^5.5.2"
}
}