-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "brownian-motion-3d",
"version": "1.0.0",
"description": "- Use octree data structure to detect collision - Add a tracer line for the big sphere (eyeCandy)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --progress -p",
"watch": "webpack --progress --watch",
"start": "webpack-dev-server --open --hot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QuaziH/Brownian-Motion-3D.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/QuaziH/Brownian-Motion-3D/issues"
},
"homepage": "https://github.com/QuaziH/Brownian-Motion-3D#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.11.2"
},
"dependencies": {
"three": "^0.88.0",
"three-orbit-controls": "^82.1.0",
"three-window-resize": "^1.0.4"
}
}