-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 690 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 690 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
{
"name": "react-rough-fiber",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "pnpm@9.6.0",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@antfu/eslint-config": "^4.7.0",
"eslint": "^9.21.0",
"turbo": "latest"
},
"pnpm": {
"patchedDependencies": {
"roughjs@4.5.2": "patches/roughjs@4.5.2.patch",
"path-data-parser@0.1.0": "patches/path-data-parser@0.1.0.patch"
}
}
}