-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 898 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 898 Bytes
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
{
"name": "three-js-voxels",
"version": "1.0.0",
"description": "Minecraft-inspired three.js web app",
"private": true,
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack serve --mode development",
"format": "prettier --write '**/*.js'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@popperjs/core": "^2.10.2",
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.7.1",
"dat.gui": "^0.7.7",
"jquery": "^3.6.0",
"popper.js": "^1.16.1",
"three": "^0.115.0"
},
"devDependencies": {
"prettier": "^2.0.4",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"css-loader": "^6.5.1"
}
}