-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 880 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 880 Bytes
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
{
"name": "devpulse",
"version": "0.1.0",
"private": true,
"description": "Engineering health metrics that tell the truth",
"license": "MIT",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "eslint 'packages/*/src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'packages/*/src/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'packages/*/src/**/*.{ts,tsx,json}'",
"typecheck": "pnpm -r run typecheck",
"clean": "pnpm -r run clean"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"prettier": "^3.2.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.0"
}