-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.13 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.13 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
{
"name": "task-tracker",
"version": "1.0.0",
"private": "true",
"description": "",
"main": "index.js",
"scripts": {
"dev": "pnpm run --parallel dev",
"build": "pnpm run --parallel build",
"start": "pnpm run --parallel start",
"lint": "pnpm run --recursive lint",
"lint:fix": "pnpm run --recursive lint:fix",
"lint:frontend": "pnpm --filter @task-tracker/frontend lint",
"lint:backend": "pnpm --filter @task-tracker/backend lint",
"lint:shared": "pnpm --filter @task-tracker/shared-types lint",
"type-check": "pnpm run --recursive type-check",
"format": "pnpm run --recursive format",
"format:check": "pnpm run --recursive format:check",
"dev:backend": "pnpm --filter @task-tracker/backend start:dev",
"build:backend": "pnpm --filter @task-tracker/backend build",
"start:backend": "pnpm --filter @task-tracker/backend start:prod"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/node": "^25.0.0",
"eslint": "^9.39.2",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.56.0"
},
"license": "ISC",
"packageManager": "pnpm@10.29.3"
}