forked from BabylonJS/Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.65 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "babylonjs-editor",
"version": "4.0.2",
"description": "Babylon.js Editor is a Web Application helping artists to work with Babylon.js",
"main": "build/src/main/main.js",
"productName": "Babylon.js Editor",
"typings": "babylonjs-editor-extensions.d.ts",
"repository": {
"url": "https://github.com/BabylonJS/Editor/"
},
"author": {
"name": "Julien Moreau-Mathis",
"url": "https://medium.com/@Luaacro"
},
"scripts": {
"postinstall": "electron-rebuild && electron-builder install-app-deps && cd module && npm i && cd ../sample-plugin && npm i && cd ../website && npm i && cd ../webpack-extension && npm i && cd ..",
"clean": "rimraf build && rimraf declaration && rimraf electron-packages",
"compile": "tsc -p .",
"test": "npm run prepare-tests && mocha ./build/test/index.js",
"unit-test": "mocha ./build/test/unit-tests/index.js",
"prepare-tests": "node ./script/remove-tests.js",
"build": "npm run compile && npm run bundle",
"rebuild": "npm run clean && npm run build",
"watch": "tsc -p . --watch",
"watch-sample-plugin": "cd sample-plugin && tsc -p . --watch",
"bundle": "node ./script/dts.js && node ./script/electron.js",
"dts": "node ./script/dts.js"
},
"readme": "https://github.com/BabylonJS/Editor/blob/master/README.md",
"license": "(Apache-2.0)",
"devDependencies": {
"@types/adm-zip": "0.4.32",
"@types/dat.gui": "0.7.5",
"@types/fs-extra": "8.1.0",
"@types/glob": "7.1.1",
"@types/http-server": "0.10.0",
"@types/jquery": "3.3.33",
"@types/node": "13.9.0",
"@types/offscreencanvas": "2019.6.0",
"@types/chart.js": "2.7.15",
"@types/raphael": "2.1.30",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/mocha": "5.2.7",
"dts-bundle": "^0.7.3",
"electron": "8.5.2",
"electron-builder": "22.5.1",
"electron-rebuild": "1.10.1",
"spectron": "10.0.1",
"mocha": "8.2.1",
"spectron-dialog-addon": "1.0.1",
"rimraf": "3.0.2",
"xhr2": "0.2.0"
},
"dependencies": {
"@babylonjs/core": "4.2.0",
"@babylonjs/gui": "4.2.0",
"@babylonjs/loaders": "4.2.0",
"@babylonjs/materials": "4.2.0",
"@babylonjs/post-processes": "4.2.0",
"@babylonjs/procedural-textures": "4.2.0",
"@blueprintjs/core": "3.28.1",
"@blueprintjs/select": "3.13.2",
"adm-zip": "0.4.14",
"antd": "4.4.2",
"babylonjs": "4.2.0",
"babylonjs-gui": "4.2.0",
"babylonjs-inspector": "4.2.0",
"babylonjs-loaders": "4.2.0",
"babylonjs-materials": "4.2.0",
"babylonjs-node-editor": "4.2.0",
"babylonjs-post-process": "4.2.0",
"babylonjs-procedural-textures": "4.2.0",
"babylonjs-serializers": "4.2.0",
"cannon": "0.6.2",
"ccapture.js": "1.1.0",
"chalk": "4.0.0",
"chart.js": "2.9.4",
"chartjs-plugin-dragdata": "1.1.3",
"chartjs-plugin-zoom": "0.7.7",
"chartjs-plugin-annotation": "0.5.7",
"chartjs-plugin-dragzone": "0.1.1",
"dat.gui": "0.7.6",
"earcut": "2.2.2",
"electron-devtools-installer": "3.1.1",
"fbx-parser": "2.1.3",
"fs-extra": "8.1.0",
"generator-core": "3.11.5",
"glob": "7.1.6",
"golden-layout": "1.5.9",
"flexlayout-react": "0.5.6",
"pngjs": "6.0.0",
"http-server": "0.12.3",
"jquery": "3.5.0",
"js-beautify": "1.11.0",
"litegraph.js": "0.7.8",
"monaco-editor": "0.18.x",
"node-pty": "0.9.0",
"raphael": "2.3.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-color": "2.19.3",
"spectorjs": "0.9.4",
"typescript": "4.0.5",
"xterm": "4.8.1",
"xterm-addon-fit": "0.4.0",
"yargs": "10.0.3",
"filenamify": "4.2.0",
"react-split-pane": "0.1.92"
}
}