-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 833 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 833 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
{
"private": true,
"packageManager": "yarn@4.4.0",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"build": "yarn workspaces foreach -Apt run build",
"changeset": "changeset",
"fmt": "prettier -w .",
"fmt:check": "prettier -c .",
"lint": "eslint .",
"test": "yarn workspaces foreach -Ap run test"
},
"devDependencies": {
"@babel/eslint-plugin-development": "^7.25.1",
"@changesets/cli": "^2.27.12",
"@eslint/js": "^9.39.1",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-jest": "^28.6.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.47.0"
}
}