-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 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
{
"name": "3viz",
"version": "1.0.0",
"description": "Gee whiz it's 3viz",
"main": "helpers.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve",
"build": "webpack build -o deploy/threeviz/ && cp public/* deploy/threeviz/",
"clean": "rm -r dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimbeRobotics/3viz.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SimbeRobotics/3viz/issues"
},
"homepage": "https://github.com/SimbeRobotics/3viz#readme",
"dependencies": {
"@three-ts/orbit-controls": "latest",
"@types/dat.gui": "^0.7.6",
"dat.gui": "^0.7.7",
"messagepack": "latest",
"three": "^0.125.0"
},
"devDependencies": {
"@types/three": "^0.141.0",
"awesome-typescript-loader": "^5.2.1",
"browser-sync": "^2.27.10",
"browser-sync-webpack-plugin": "latest",
"css-loader": "latest",
"html-webpack-plugin": "latest",
"json-loader": "latest",
"progress-bar-webpack-plugin": "latest",
"style-loader": "latest",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.2"
}
}