forked from RaananW/babylonjs-webpack-es6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.9 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
{
"name": "babylonjs-typescript-webpack-simple-scene",
"version": "0.0.1",
"description": "A simple scene using Babylon.js, typescript and webpack. What could go wrong?",
"main": "index.ts",
"dependencies": {
"@babylonjs/core": "^5.3.0",
"@babylonjs/gui-editor": "^5.5.0",
"@babylonjs/inspector": "^5.3.0",
"@babylonjs/loaders": "^5.3.0",
"@babylonjs/materials": "^5.3.0",
"@babylonjs/post-processes": "^5.11.0",
"ammo.js": "github:kripken/ammo.js",
"lil-gui": "^0.16.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.9.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"source-map-loader": "^3.0.1",
"ts-loader": "^8.3.0",
"typescript": "^4.5.5",
"url-loader": "^4.1.1",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"scripts": {
"start": "npx webpack serve --config webpack.dev.js",
"build:dev": "npx webpack --config webpack.dev.js",
"build": "npx webpack --config webpack.prod.js",
"lint": "npx eslint . --ext .ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RaananW/babylonjs-webpack-es6.git"
},
"keywords": [
"Babylon.js",
"webpack",
"getting started",
"typescript",
"es6"
],
"author": {
"name": "Raanan Weber",
"email": "[email protected]",
"url": "http://blog.raananweber.com/"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/RaananW/babylonjs-webpack-es6/issues"
},
"homepage": "https://github.com/RaananW/babylonjs-webpack-es6"
}