-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 804 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 804 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
{
"name": "plugins",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"publish-packages": "turbo run build lint && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"eslint-config-custom": "workspace:*",
"plop": "^3.1.2",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "pnpm@8.6.6",
"pnpm": {
"patchedDependencies": {
"dragula@3.7.3": "patches/dragula@3.7.3.patch",
"custom-event@1.0.1": "patches/custom-event@1.0.1.patch"
}
}
}