forked from gatewaze/gatewaze
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "gatewaze",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Open-source event management platform",
"license": "Apache-2.0",
"scripts": {
"dev": "pnpm --filter @gatewaze/* dev",
"dev:admin": "pnpm --filter @gatewaze/admin dev",
"dev:portal": "pnpm --filter @gatewaze/portal dev",
"dev:api": "pnpm --filter @gatewaze/api dev",
"build": "pnpm --filter @gatewaze/* build",
"build:admin": "pnpm --filter @gatewaze/admin build",
"build:portal": "pnpm --filter @gatewaze/portal build",
"build:api": "pnpm --filter @gatewaze/api build",
"lint": "pnpm --filter @gatewaze/* lint",
"typecheck": "pnpm --filter @gatewaze/* typecheck",
"clean": "pnpm --filter @gatewaze/* clean",
"test": "pnpm --filter @gatewaze/* test",
"test:watch": "pnpm --filter @gatewaze/* test:watch",
"modules:migrate": "tsx scripts/modules/run-migrations.ts",
"modules:deploy-functions": "tsx scripts/modules/deploy-functions.ts"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msgpackr-extract",
"sharp"
]
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"vitest": "^4.1.0"
},
"dependencies": {
"@pdf-lib/fontkit": "^1.1.1",
"pdf-lib": "^1.17.1"
}
}