-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 933 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
30
31
32
33
{
"name": "ecs-gpu",
"version": "1.0.0",
"main": "index.js",
"author": "Viktor Brylistyi",
"license": "MIT",
"scripts": {
"dev": "webpack serve --open --config ./configs/webpack.dev.js",
"build": "webpack --config ./configs/webpack.dev.js",
"buildWebflow": "webpack --config ./configs/webpack.prod.js"
},
"devDependencies": {
"@types/uuid": "^9.0.8",
"@webgpu/types": "^0.1.40",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.10.0",
"csstype": "^3.1.3",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^3.3.4",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@types/three": "^0.163.0",
"simplex-noise": "^4.0.1",
"three": "^0.163.0",
"uuid": "^9.0.1"
}
}