-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.57 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
{
"name": "guildpass-app",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "GuildPass web app dashboard for managing passes, communities, and members",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "pnpm --filter @guildpass/dashboard dev",
"build": "tsc -b",
"build:clean": "rm -rf dist .tsbuildinfo && tsc -b",
"start": "pnpm --filter @guildpass/dashboard start",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"test:run": "pnpm -r test",
"test:webhook-utils": "pnpm --filter @guildpass/webhook-utils test",
"db:migrate": "pnpm --filter @guildpass/dashboard db:migrate",
"db:seed": "pnpm --filter @guildpass/dashboard db:seed",
"dev:bot": "pnpm --filter @guildpass/discord-bot dev",
"start:bot": "pnpm --filter @guildpass/discord-bot start",
"register:commands": "pnpm --filter @guildpass/discord-bot register:commands",
"dev:docs": "pnpm --filter @guildpass/docs start",
"build:docs": "pnpm --filter @guildpass/docs build"
},
"engines": {
"node": ">=18.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Adamantine-guild/guildpass-app.git"
},
"homepage": "https://github.com/Adamantine-guild/guildpass-app",
"bugs": {
"url": "https://github.com/Adamantine-guild/guildpass-app/issues"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.5.0",
"typescript-eslint": "^8.61.0"
},
"dependencies": {
"tsx": "^4.22.4",
"zod": "^4.4.3"
}
}