-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.49 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.49 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
{
"name": "pizza-mcp-agents",
"description": "Serverless API and Model Context Protocol (MCP) integration to order pizzas from AI agents.",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "run-on-output -n 'ready' -p 'pizza.*lock lease,registration.*lock lease,:4280' concurrently \"npm:start:*\" --kill-others",
"start:pizza": "cd src/pizza-webapp && npm start",
"start:registration": "cd src/registration-webapp && npm run start",
"start:mcp": "cd src/pizza-mcp && npm start",
"ready": "echo '\n🚀 All services ready 🚀\n\n- Pizza webapp : http://localhost:5173\n- Registration webapp : http://localhost:4280\n- Pizza API : http://localhost:7071\n- Pizza MCP : http://localhost:3000/mcp\n'",
"mcp:local": "cd src/pizza-mcp && npm run -s start:local",
"env": "node env.js",
"format": "prettier --list-different --write 'src/**/*.ts' 'src/**/*.js' 'src/**/*.mjs'",
"preinstall": "cd src/pizza-webapp && npm install && cd ../registration-webapp && npm install && cd ../pizza-api && npm install && cd ../registration-api && npm install && cd ../pizza-mcp && npm install"
},
"author": "Microsoft",
"license": "MIT",
"devDependencies": {
"concurrently": "^9",
"dotenv": "^17.2.1",
"prettier": "^3",
"run-on-output": "^1.0.1"
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true
}
}