-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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
39
40
41
42
43
{
"name": "mcsl-future-web",
"private": true,
"license": "GPL-3.0-only",
"versions": {
"codename": "CherryGrove",
"version": "0.1.0",
"app": "a",
"web": "a"
},
"scripts": {
"app:build": "turbo run app#build",
"app:dev": "turbo run app#dev",
"app:fix": "turbo run fix --filter=mcsl-future-tauri",
"app:lint": "turbo run app#lint",
"web:build": "turbo run web#build",
"web:build:docker": "cd apps/web; bun run build:docker; cd -",
"web:dev": "turbo run web#frontend:dev web#backend:dev",
"web:dev:frontend": "turbo run web#frontend:dev",
"web:dev:backend": "turbo run web#backend:dev",
"web:fix": "turbo run fix --filter=mcsl-future-web",
"web:lint": "turbo run web#lint",
"ui:lint": "turbo run ui#lint",
"shared:lint": "turbo run shared#lint",
"build": "turbo run build",
"lint": "turbo run lint",
"fix": "turbo run fix",
"test": "turbo run test"
},
"devDependencies": {
"prettier": "^3.8.1",
"turbo": "^2.8.10",
"typescript": "^6.0.2"
},
"packageManager": "bun@1.3.11",
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"packages/*"
]
}