-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "threejs-web-vr",
"version": "1.0.0",
"description": "three.js + webvr + typescript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --inline --open",
"build": "webpack --mode production && webpack-dev-server --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davjo664/threejs-web-vr"
},
"keywords": [],
"author": "David Johansson",
"license": "MIT",
"homepage": "https://github.com/davjo664/threejs-web-vr#readme",
"devDependencies": {
"awesome-typescript-loader": "latest",
"browser-sync": "latest",
"browser-sync-webpack-plugin": "latest",
"css-loader": "latest",
"extract-text-webpack-plugin": "latest",
"html-webpack-plugin": "latest",
"json-loader": "latest",
"progress-bar-webpack-plugin": "latest",
"style-loader": "latest",
"typescript": "latest",
"webpack": "latest",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "latest"
},
"dependencies": {
"@tweenjs/tween.js": "^17.2.0",
"@types/three": "latest",
"three": "latest",
"three-fbx-loader": "^1.0.3",
"three-obj-mtl-loader": "^1.0.3",
"three-text2d": "^0.4.1",
"web-audio-touch-unlock": "^1.0.1"
}
}