-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.54 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.54 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "lessons-api",
"version": "1.0.0",
"description": "",
"type": "module",
"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",
"migrate": "tsx tools/migrate.ts",
"migrate:up": "tsx tools/migrate.ts --action=up",
"migrate:down": "tsx tools/migrate.ts --action=down",
"migrate:status": "tsx tools/migrate.ts --action=status",
"migrate:create": "tsx tools/migrate-create.ts",
"lint": "eslint --fix src/",
"lint:check": "eslint src/",
"tsc": "tsc",
"fix-esm": "node tools/fix-esm-imports.js",
"build": "npm-run-all clean lint tsc fix-esm",
"build-fast": "npm-run-all clean tsc fix-esm",
"dev:ts": "tsx src/index.ts",
"dev": "nodemon --watch src -e ts,ejs --exec \"tsx src/index.ts\"",
"dev:start": "npm-run-all build start",
"dev:old": "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": {
"@aws-sdk/client-s3": "^3.842.0",
"@aws-sdk/lib-storage": "^3.842.0",
"@churchapps/apihelper": "0.5.3",
"@codegenie/serverless-express": "^4.16.0",
"@hubspot/api-client": "^13.0.0",
"archiver": "^7.0.1",
"axios": "^1.10.0",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^17.0.1",
"express": "^4.21.2",
"fs-extra": "^11.3.0",
"inversify": "^6.2.2",
"inversify-express-utils": "^6.5.0",
"kysely": "^0.28.14",
"mysql2": "^3.14.1",
"@aws-sdk/client-elastic-transcoder": "^3.840.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/mysql": "^2.15.27",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"eslint": "^9.30.1",
"eslint-plugin-unused-imports": "^4.4.1",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"serverless": "^3.38.0",
"serverless-plugin-utils": "^0.2.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22.0.0"
}
}