-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 830 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 830 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
{
"name": "trailblaze-calendar",
"version": "1.0.0",
"type": "module",
"scripts": {
"lint": "turbo run lint",
"build": "turbo run build",
"build-be": "turbo run build --filter @trailblaze-calendar/backend",
"build-fe": "turbo run build --filter @trailblaze-calendar/frontend",
"dev": "turbo run dev",
"start": "turbo run start",
"start-be": "turbo run start --filter @trailblaze-calendar/backend",
"start-fe": "turbo run start --filter @trailblaze-calendar/frontend",
"pretty-check": "prettier --check .",
"pretty-fix": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=22.11.0"
},
"devDependencies": {
"eslint": "^9.33.0",
"prettier": "^3.6.2",
"turbo": "^2.5.5"
}
}