-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 934 Bytes
/
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
{
"name": "babylonjs-webpack-typescript-es6-basic-template",
"version": "1.0.0",
"description": "An opensourced Babylon.js 5 starter template built entirely in TypeScript and bundled with Webpack",
"main": "app.ts",
"scripts": {
"build": "webpack --config webpack.config.prod.ts",
"start": "webpack-dev-server --config webpack.config.dev.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "tlt",
"license": "MIT",
"devDependencies": {
"@babylonjs/core": "^5.46.0",
"@babylonjs/inspector": "^5.46.0",
"@types/node": "^18.13.0",
"@types/webpack": "^5.28.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}