-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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
45
46
{
"name": "3d-solar-system",
"version": "1.0.0",
"description": "A 3D solar system simulation with VR",
"main": "index.js",
"scripts": {
"start": "webpack serve --open --mode development",
"build-dev": "webpack --mode development",
"build-prod": "webpack --mode production"
},
"keywords": [
"3D",
"solar system",
"three.js",
"webgl",
"simulation",
"webvr",
"VR"
],
"author": "Aymen Naghmouchi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aymen94/3d-solar-system.git"
},
"bugs": {
"url": "https://github.com/aymen94/3d-solar-system/issues"
},
"homepage": "https://aymen94.github.io/3d-solar-system",
"devDependencies": {
"@babel/core": "^7.25.8",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"lil-gui": "^0.19.2",
"three": "^0.169.0"
}
}