-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 942 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
31
32
{
"name": "corum-fs",
"version": "0.0.1",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"serve": "turbo run serve",
"dev:backend": "turbo run dev --filter=backend",
"dev:frontend": "turbo run dev --filter=frontend",
"serve:frontend": "turbo run serve --filter=frontend",
"lint": "turbo run lint",
"test": "turbo run test",
"test:backend": "turbo run test --filter=backend",
"test:frontend": "turbo run test --filter=frontend",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"setup": "turbo run setup --filter=backend && turbo run serve --filter=frontend"
},
"devDependencies": {
"prettier": "^3.4.2",
"turbo": "^2.6.1",
"typescript": "^5.7.3"
},
"packageManager": "yarn@1.22.0",
"engines": {
"node": ">=18.0.0"
}
}