-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.71 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.71 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
43
44
45
46
47
48
49
50
{
"name": "examples-browser",
"version": "0.0.0",
"description": "Examples browser for the PlayCanvas Engine",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npm run -s build:metadata && cross-env NODE_ENV=production rollup -c",
"build:metadata": "node ./scripts/build-metadata.mjs",
"build:thumbnails": "node ./scripts/build-thumbnails.mjs",
"clean": "node ./scripts/clean.mjs",
"develop": "cross-env NODE_ENV=development concurrently --kill-others \"npm run watch\" \"npm run serve\"",
"lint": "eslint .",
"serve": "serve dist -l 5555 --no-request-logging --config ../serve.json",
"watch": "npm run -s build:metadata && cross-env NODE_ENV=development rollup -c -w"
},
"devDependencies": {
"@babel/standalone": "7.29.2",
"@monaco-editor/react": "4.7.0",
"@playcanvas/eslint-config": "2.1.0",
"@playcanvas/observer": "1.7.1",
"@playcanvas/pcui": "5.8.0",
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-replace": "6.0.3",
"@rollup/plugin-terser": "0.4.4",
"@tweenjs/tween.js": "25.0.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/react-router-dom": "5.3.3",
"concurrently": "9.2.1",
"cross-env": "10.1.0",
"eslint": "9.39.4",
"examples": "file:./iframe",
"fflate": "0.8.2",
"fs-extra": "11.3.4",
"monaco-editor": "0.55.1",
"playcanvas": "file:..",
"prop-types": "15.8.1",
"puppeteer": "24.42.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-router-dom": "7.14.2",
"rollup": "4.60.2",
"serve": "14.2.6",
"sharp": "0.34.5"
},
"author": "PlayCanvas <support@playcanvas.com>",
"license": "MIT"
}