-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.33 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.33 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
{
"name": "babylonjs-examples",
"version": "1.0.0",
"description": "Examples: - [x] **Hello world**: create a simple scene with a cube and ground. Using a free camera to go through the scene. - [x] **Texture material**: Load and create a texture from the storage, then creating a material with this texture. - [ ] Load a model - [ ] Character animation",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.config.dev.js",
"build": "webpack --config webpack.config.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"devDependencies": {
"copy-webpack-plugin": "^8.1.0",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.1",
"html-webpack-plugin": "^5.3.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-glsl-loader": "^1.0.1",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@babylonjs/core": "^4.2.0",
"@babylonjs/loaders": "^4.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daoshengmu/babylonjs-examples.git"
},
"bugs": {
"url": "https://github.com/daoshengmu/babylonjs-examples/issues"
},
"homepage": "https://github.com/daoshengmu/babylonjs-examples#readme"
}