-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.38 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.38 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
{
"name": "mcp-auth",
"private": true,
"epicshop": {
"title": "MCP Auth 🔐",
"subtitle": "Build remote MCP servers with users",
"sidecarProcesses": {
"EpicMeApp": "npm run dev --silent --prefix ./epicshop/epic-me -- --clearScreen=false --logLevel=error --strictPort"
},
"githubRepo": "https://github.com/epicweb-dev/mcp-auth",
"instructor": {
"name": "Kent C. Dodds",
"avatar": "/images/instructor.png",
"𝕏": "kentcdodds"
},
"stackBlitzConfig": {
"view": "editor",
"terminalHeight": "0",
"hidedevtools": "1",
"hideNavigation": "1"
},
"onboardingVideo": "https://www.epicai.pro/get-started-with-epic-ai-workshops",
"product": {
"host": "www.epicai.pro",
"slug": "mcp-auth-ddk2h",
"displayName": "EpicAI.pro",
"displayNameShort": "Epic AI",
"discordChannelId": "1446549245246177371",
"discordTags": [
"1446550493949198457",
"1446550030180814888"
]
}
},
"type": "module",
"scripts": {
"postinstall": "cd ./epicshop && npm install && cd ./epic-me && npm install",
"start": "pkgmgrx --prefix ./epicshop epicshop start",
"dev": "pkgmgrx --prefix ./epicshop epicshop start",
"update": "npx --prefix ./epicshop epicshop update",
"test": "pkgmgr run test --silent --prefix playground",
"test:e2e": "pkgmgr run test:e2e --silent --prefix playground",
"test:e2e:dev": "pkgmgr run test:e2e:dev --silent --prefix playground",
"test:e2e:run": "pkgmgr run test:e2e:run --silent --prefix playground",
"setup": "pkgmgrx epicshop setup",
"setup:custom": "node ./epicshop/setup-custom.js",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc -b",
"validate:all": "npm-run-all --parallel --print-label --print-name --continue-on-error test:all lint typecheck"
},
"keywords": [],
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com/)",
"license": "GPL-3.0-only",
"workspaces": [
"exercises/*/*",
"examples/*",
"epicshop/mcp-dev",
"epicshop/epic-me/workers/db/client"
],
"engines": {
"node": ">=22.13.0",
"npm": ">=8.16.0",
"git": ">=2.18.0"
},
"devDependencies": {
"@epic-web/config": "^1.21.3",
"eslint": "^9.39.1",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"pkgmgr": "^1.1.1"
},
"prettier": "@epic-web/config/prettier"
}