forked from BabylonJS/Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.08 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
{
"name": "babylonjs-editor",
"version": "3.1.1",
"description": "Babylon.js Editor is a Web Application helping artists to work with Babylon.js",
"main": "build/electron/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": {
"clean": "rimraf build && rimraf declaration && rimraf dist && rimraf electron-packages",
"compile": "tsc -p .",
"compile-electron": "tsc -p ./electron",
"build-vscode-extension": "cd vscode-extension && npm run package && cd ..",
"build": "npm run compile && npm run compile-electron && npm run bundle",
"rebuild": "npm run clean && npm run build",
"watch": "tsc -p . --watch",
"watch-electron": "tsc -p ./electron --watch",
"watch-vscode-extension": "tsc -p ./vscode-extension --watch",
"webserver": "http-server -p 1338",
"bundle": "node ./script/dts.js && node ./script/css.js && node ./script/bundle.js && node ./script/electron.js",
"bundle-js": "node ./script/css.js && node ./script/bundle.js",
"dts": "node ./script/dts.js"
},
"readme": "https://github.com/BabylonJS/Editor/blob/master/README.md",
"license": "(Apache-2.0)",
"devDependencies": {
"@types/dat-gui": "~0.6.3",
"@types/fs-extra": "~4.0.5",
"@types/http-server": "~0.10.0",
"@types/javascript-astar": "0.0.30",
"@types/jstree": "~3.3.36",
"@types/koa": "~2.0.40",
"@types/koa-bodyparser": "~4.2.0",
"@types/koa-router": "~7.0.25",
"@types/koa-static": "~4.0.0",
"@types/node": "~8.0.47",
"@types/raphael": "~2.1.30",
"@types/socket.io": "2.1.2",
"@types/socket.io-client": "~1.4.32",
"@types/systemjs": "~0.20.6",
"@types/w2ui": "~1.4.32",
"electron": "5.0.1",
"electron-builder": "20.39.0",
"http-server": "0.11.1",
"socket.io": "2.2.0"
},
"dependencies": {
"babylonjs": "4.0.3",
"babylonjs-gui": "4.0.3",
"babylonjs-loaders": "4.0.3",
"babylonjs-materials": "4.0.3",
"babylonjs-post-process": "4.0.3",
"babylonjs-procedural-textures": "4.0.3",
"babylonjs-serializers": "4.0.3",
"base64-css": "~0.0.2",
"cannon": "~0.6.2",
"ccapture.js": "~1.1.0",
"dat-gui": "~0.5.0",
"dat.gui": "~0.7.2",
"dts-bundle": "~0.7.3",
"earcut": "~2.1.3",
"es6-promise": "~4.1.0",
"fs-extra": "~4.0.2",
"golden-layout": "~1.5.9",
"javascript-astar": "~0.4.1",
"jquery": "^3.4.1",
"jquery-contextmenu": "2.8.0",
"jstree": "~3.3.5",
"koa": "~2.4.1",
"koa-bodyparser": "~4.2.1",
"koa-router": "~7.3.0",
"koa-socket": "~4.4.0",
"koa-static": "~5.0.0",
"litegraph.js": "0.7.0",
"monaco-editor": "~0.10.1",
"raphael": "~2.2.7",
"rimraf": "~2.6.2",
"socket.io-client": "~2.0.4",
"spectorjs": "~0.9.2",
"systemjs": "~0.20.19",
"systemjs-builder": "~0.16.12",
"systemjs-plugin-css": "~0.1.35",
"typescript": "~3.0.1",
"w2ui": "~1.4.3",
"yargs": "10.0.3"
}
}