-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.01 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
78
79
80
81
82
83
84
85
86
87
{
"name": "lessons-api",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"preinstall": "node -e \"if(!(process.env.npm_config_user_agent||'').startsWith('yarn')){console.error('\\n[LessonsApi] This project uses Yarn (Berry). Run \\'yarn install\\' instead of npm/pnpm.\\n');process.exit(1)}\"",
"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": "tsx tools/initdb.ts",
"populateDemo": "tsx tools/initdb.ts --demo-only",
"reset-demo": "tsx tools/reset-demo.ts",
"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 \"yarn 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-elastic-transcoder": "^3.957.0",
"@aws-sdk/client-s3": "^3.1037.0",
"@aws-sdk/lib-storage": "^3.1037.0",
"@churchapps/apihelper": "^0.7.0",
"@churchapps/helpers": "^1.6.1",
"@codegenie/serverless-express": "^4.17.1",
"@hubspot/api-client": "^13.5.0",
"archiver": "^7.0.1",
"axios": "^1.15.2",
"cors": "^2.8.6",
"dayjs": "^1.11.20",
"dotenv": "^17.4.2",
"express": "^4.22.1",
"fs-extra": "^11.3.4",
"inversify": "^6.2.2",
"inversify-express-utils": "^6.5.0",
"kysely": "^0.28.16",
"mysql2": "^3.22.2",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/archiver": "^6.0.4",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/mysql": "^2.15.27",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^9.39.4",
"eslint-plugin-unused-imports": "^4.4.1",
"nodemon": "^3.1.14",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"serverless": "^3.40.0",
"serverless-plugin-utils": "^0.2.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "yarn@4.15.0",
"dependenciesMeta": {
"esbuild": {
"built": true
}
}
}