-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.6 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": "budget_app",
"private": true,
"version": "0.5.0",
"description": "Workspace root for backend and frontend packages",
"packageManager": "pnpm@10.25.0",
"scripts": {
"backend:dev": "pnpm --filter backend dev",
"frontend:dev": "pnpm --filter frontend dev",
"dev": "pnpm --parallel --filter backend --filter frontend dev",
"backend:build": "pnpm --filter backend build",
"frontend:build": "pnpm --filter frontend build",
"build": "pnpm -r run build",
"backend:test": "pnpm --filter backend test",
"backend:test:watch": "pnpm --filter backend test:watch",
"backend:test:coverage": "pnpm --filter backend test:coverage",
"frontend:test": "pnpm --filter frontend test",
"frontend:test:watch": "pnpm --filter frontend test:watch",
"frontend:test:coverage": "pnpm --filter frontend test:coverage",
"test": "pnpm -r run test",
"test:watch": "pnpm -r run test:watch",
"test:coverage": "pnpm -r run test:coverage",
"lint": "eslint . --max-warnings=0 --cache --cache-location .cache/eslint",
"lint:type": "ESLINT_TYPE_AWARE=1 eslint . --max-warnings=0 --cache --cache-location .cache/eslint-type",
"format": "prettier . --write --cache --cache-location .cache/prettier",
"format:check": "prettier . --check --cache --cache-location .cache/prettier"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"prettier": "^3.6.2",
"typescript-eslint": "^8.51.0"
}
}