-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.5 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.5 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
{
"name": "Healix",
"version": "1.0.0",
"description": "Healix is a nutrition-focused platform built with a microservices architecture, designed to handle personalized health data and real-world commerce and fulfillment workflows at scale.",
"workspaces": [
"frontend",
"gateway",
"service"
],
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint frontend gateway services --ext .js,.ts,.jsx,.tsx",
"format": "prettier --write frontend gateway services",
"prepare": "husky",
"dev": "concurrently \"pnpm -r --parallel dev\" \"pnpm checkout:workers\"",
"checkout:worker": "pnpm --filter checkout-service worker:checkout",
"order:worker": "pnpm --filter checkout-service worker:order",
"stock:worker": "pnpm --filter checkout-service worker:stock",
"checkout:workers": "concurrently \"pnpm checkout:worker\" \"pnpm order:worker\" \"pnpm stock:worker\""
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.26.0",
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"concurrently": "^9.2.1",
"eslint": "^8.57.1",
"eslint-config-next": "^16.1.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4"
}
}