-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 954 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 954 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
33
34
35
36
37
38
39
40
41
{
"name": "1fe",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"test": "turbo run test",
"test:playwright": "turbo run test:playwright",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@1fe/eslint-config": "workspace:*",
"@1fe/typescript-config": "workspace:*",
"@changesets/cli": "^2.29.4",
"prettier": "^3.5.3",
"syncpack": "^13.0.4",
"tsup": "^8.5.0",
"turbo": "^2.5.4",
"typescript": "5.8.3"
},
"engines": {
"node": ">=22"
},
"overrides": {
"typescript": "5.8.2",
"@types/node": "22.9.0"
},
"workspaces": [
"packages/*",
"apps/*"
],
"resolutions": {
"@1fe/server": "workspace:*",
"@1fe/shell": "workspace:*",
"@1fe/cli": "workspace:*"
},
"packageManager": "yarn@4.7.0"
}