-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.45 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.45 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
{
"name": "@animeaux/root",
"private": true,
"license": "MIT",
"engines": {
"node": "^22.12.0",
"pnpm": "^10.20.0"
},
"packageManager": "pnpm@10.20.0",
"type": "module",
"scripts": {
"dev-down": "run-s dev-down:ecosystem dev-down:docker",
"dev-down:docker": "docker compose down",
"dev-down:ecosystem": "pm2 delete ./ecosystem.config.cjs && rm -rf ./logs",
"dev-ls": "pnpm pm2 ls",
"dev-log": "pnpm pm2 log",
"dev-restart:ecosystem": "run-s dev-down:ecosystem dev-up:ecosystem",
"dev-up": "run-s dev-up:docker dev-up:ecosystem",
"dev-up:docker": "docker compose up -d",
"dev-up:ecosystem": "pnpm --filter './libs/*...' build && pm2 start ./ecosystem.config.cjs",
"lint": "run-p --continue-on-error --print-label lint:*",
"lint:eslint": "eslint --cache --cache-location ./node_modules/.cache/eslint --max-warnings 0 .",
"lint:prettier": "prettier --list-different .",
"lint:workspace": "pnpm -r --no-bail lint",
"lint-fix": "run-s --print-label lint-fix:eslint lint-fix:prettier lint-fix:workspace",
"lint-fix:eslint": "eslint --cache --cache-location ./node_modules/.cache/eslint --fix .",
"lint-fix:prettier": "prettier --write .",
"lint-fix:workspace": "pnpm -r --no-bail lint-fix"
},
"devDependencies": {
"@animeaux/dev-tools": "workspace:*",
"eslint": "catalog:",
"npm-run-all": "catalog:",
"pm2": "catalog:",
"prettier": "catalog:",
"typescript": "catalog:"
}
}