-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.03 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.03 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
{
"name": "microplaydemo",
"version": "1.0.0",
"description": "**Microservices made simple — tested end‑to‑end with Playwright.**",
"main": "index.js",
"scripts": {
"start": "concurrently \"node gateway/gatewayindex.js\" \"node user-service/user-service.js\" \"node order-service/order-service.js\" \"node product-service/product-service.js\" \"node payment-service/payment-service.js\" \"node review-service/review-service.js\" \"npx serve ui -p 3003\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mukuldev21/MicroPlayDemo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Mukuldev21/MicroPlayDemo/issues"
},
"homepage": "https://github.com/Mukuldev21/MicroPlayDemo#readme",
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^24.10.2",
"concurrently": "^9.2.1",
"serve": "^14.2.5"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^5.2.1",
"node-fetch": "^2.7.0"
}
}