-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.16 KB
/
package.json
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": "playcanvas-react-monorepo",
"description": "A monorepo for PlayCanvas React renderer and examples. Please see the packages directory for more information.",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=docs",
"build:lib": "npm run build --workspace=@playcanvas/react",
"build:docs": "npm run build --no-mangling --workspace=docs",
"prebuild": "npm run build:lib",
"build": "npm run build:docs",
"start": "npm run start --workspace=docs",
"lint": "npx eslint",
"version": "npm version --workspace=@playcanvas/react",
"publish": "npm publish --workspace=@playcanvas/react"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint": "^9.14.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-compiler": "^19.0.0-beta-63b359f-20241101",
"globals": "^15.12.0",
"type-fest": "^4.26.1",
"typescript-eslint": "^8.12.2"
},
"dependencies": {
"codesandbox": "^2.2.3"
}
}