-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 794 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 794 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
{
"name": "dictionary",
"private": true,
"scripts": {
"build:dev": "turbo run build:dev --filter sls-api --filter admin --filter mobile",
"dev": "turbo run dev --filter sls-api --filter admin --filter mobile",
"lint": "turbo run lint --filter sls-api --filter admin --filter mobile",
"format": "turbo run format --filter sls-api --filter admin --filter mobile",
"check-types": "turbo run check-types --filter sls-api --filter admin --filter mobile"
},
"devDependencies": {
"turbo": "^2.5.0",
"typescript": "5.8.2",
"@types/node": "^22.14.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.22.22",
"workspaces": [
"apps/*",
"packages/*"
],
"resolutions": {
"esbuild": "^0.25.5",
"vite": "^5.4.11"
}
}