-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 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
{
"name": "babylon-physics",
"version": "1.0.0",
"description": "My webpack project",
"main": "src/index.ts",
"author": "Alexander Slavschik",
"license": "MIT",
"devDependencies": {
"@webpack-cli/generators": "^3.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.7.1",
"prettier": "^2.8.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"build": "webpack --mode=production --define-process-env-node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --define-process-env-node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"dependencies": {
"@babylonjs/core": "^5.35.0",
"@babylonjs/inspector": "^5.35.0",
"@babylonjs/loaders": "^5.35.0",
"@babylonjs/materials": "^5.35.0",
"ammojs-typed": "github:giniedp/ammojs-typed",
"regenerator-runtime": "^0.13.11"
}
}