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
|
{
"name": "@emprespresso/ci",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"model",
"server",
"worker"
],
"scripts": {
"build": "npm run build --workspaces --if-present && tsc",
"dev": "npm run dev --workspaces --if-present",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"clean": "npm run clean --workspaces --if-present && rm -rf dist node_modules",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/node": "^24.0.3",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^8.34.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22.16.0",
"npm": ">=10.0.0"
}
}
|