generated from BarthPaleologue/babylonjs-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.46 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": "^7.42.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@webpack-cli/generators": "^3.0.7",
"css-loader": "^6.11.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^2.8.8",
"raw-loader": "^4.0.2",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-shader-loader": "^2.0.2",
"typedoc": "^0.25.13",
"typedoc-material-theme": "^1.2.0",
"typedoc-plugin-missing-exports": "^2.3.0",
"typescript": "^4.9.5",
"typescript-plugin-css-modules": "^4.2.3",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2"
},
"version": "1.0.0",
"description": "BabylonJS template with webpack and Typescript",
"name": "web-tide",
"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",
"docs": "typedoc --options typedoc.json",
"serve:docs": "http-server docs -p 8081"
}
}