-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 954 Bytes
/
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": "leap-demo",
"version": "1.0.0",
"description": "An experiment with Leap Motion technology and WebGL.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --content-base src/ --open",
"pack": "webpack --progress --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"tscompile": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jp7253/leap-demo.git"
},
"author": "John Perdue",
"license": "ISC",
"bugs": {
"url": "https://github.com/jp7253/leap-demo/issues"
},
"homepage": "https://github.com/jp7253/leap-demo#readme",
"devDependencies": {
"@types/three": "^0.84.3",
"awesome-typescript-loader": "^3.1.2",
"source-map-loader": "^0.2.1",
"typescript": "^2.2.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"es6-promise": "^4.1.0",
"leapjs": "^0.6.4",
"three": "^0.84.0"
}
}