-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.46 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.46 KB
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
42
{
"name": "playcanvas-react-monorepo",
"description": "A monorepo for PlayCanvas React renderer and examples. Please see the packages directory for more information.",
"private": true,
"license": "MIT",
"packageManager": "pnpm@10.21.0",
"repository": {
"type": "git",
"url": "https://github.com/playcanvas/react"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "pnpm -r dev",
"build:lib": "pnpm --filter @playcanvas/react run build",
"build:blocks": "pnpm --filter @playcanvas/blocks run build",
"build:docs": "pnpm --filter docs run build",
"build": "pnpm run build:lib && pnpm run build:blocks && pnpm run build:docs",
"start": "pnpm --filter docs run start",
"lint": "pnpm -r exec eslint .",
"test": "pnpm -r run test"
},
"devDependencies": {
"@changesets/cli": "2.29.7",
"@eslint/js": "9.39.1",
"@testing-library/dom": "10.4.1",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vitejs/plugin-react": "5.1.0",
"eslint": "9.39.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
"globals": "16.5.0",
"pkg-pr-new": "0.0.60",
"type-fest": "5.2.0",
"typescript": "5.9.3",
"typescript-eslint": "8.46.3",
"vitest": "4.0.8"
}
}