generated from BarthPaleologue/babylonjs-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.42 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
{
"devDependencies": {
"@babylonjs/core": "^6.28.1",
"@babylonjs/gui": "^6.28.1",
"@babylonjs/havok": "^1.2.1",
"@babylonjs/loaders": "^6.28.1",
"@babylonjs/materials": "^6.28.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@webpack-cli/generators": "^3.0.7",
"css-loader": "^6.8.1",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.0",
"glslify-loader": "^2.0.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^2.8.8",
"raw-loader": "^4.0.2",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"typescript-plugin-css-modules": "^4.2.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"version": "1.0.0",
"description": "BabylonJS template with webpack and Typescript",
"name": "babylonjs-template",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint:check": "eslint src/ts",
"lint:fix": "eslint src/ts --fix"
}
}