-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.34 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.34 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
{
"name": "functions",
"type": "module",
"scripts": {
"lint": "eslint .",
"build": "tsc",
"build:watch": "tsc --watch",
"typecheck": "tsc --noEmit",
"typecheck:tests": "tsc --project tsconfig.test.json --noEmit",
"serve": "npm run build && firebase emulators:start --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log",
"cleanup-test-data": "bun run src/scripts/cleanup-test-data.ts",
"test-webhook": "bun run src/scripts/test-stripe-webhook.ts",
"sync-profile-timestamps": "bun run src/scripts/sync-profile-timestamps.ts",
"seed-claim-test": "bun run src/scripts/seed-claim-test.ts",
"backfill-allow-profile-editing": "bun run src/scripts/backfill-allow-profile-editing.ts"
},
"engines": {
"node": "24"
},
"main": "lib/index.js",
"dependencies": {
"@elysiajs/node": "^1.2.0",
"@mailerlite/mailerlite-nodejs": "^1.0.0",
"elysia": "^1.2.0",
"firebase-admin": "^13.4.0",
"firebase-functions": "^7.0.1",
"@imagekit/nodejs": "^7.3.0",
"js-yaml": "^4.1.1",
"mailgun.js": "^12.3.0",
"octokit": "^5.0.3",
"stripe": "^20.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"typescript": "^5.9.2"
},
"private": true
}